Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
150
Programmatically adding a Button on XamDataGrid
posted

Hi!

I have adding a Field that contains all countrys in a XamDataGrid like this

 

Field countryName = new Field();
countryName.Name =
"name";
countryName.Label =
"Country Name";
dataGridCountry.FieldLayouts[0].Fields.Add(countryName);

now i want to add a button for editing each Record in XamDataGrid, how can i do this programmatically

Thanks
Arta