how do i make a column editable= false in a xamdata grid??
thanks
Hi,
You can try to set AllowEdit for the field you need to disable e.g.:
<igDP:Field Name="name"> <igDP:Field.Settings> <igDP:FieldSettings AllowEdit="False"/> </igDP:Field.Settings></igDP:Field>
this isn't working for me... the thing is that al the data i present in the xamdatagrid is being loaded dynamically frim a db
all the columns show details from the db, and one column is soppust to be a checkboxes coolumn. i want all of the columns to be not editable, but i want the user to be able to check/uncheck the checkboxes in that column...