I just want to set one or two colums as noneditable (Primary keys) so user won't be able to change the value of primary key
Thanks
Mukesh
Hi Mukesh,
You can set FieldSettings.AllowEdit property to false for each of the Fields you need to be non-editable e.g.
<igDP:Field Name="FirstName">
<igDP:Field.Settings>
<igDP:FieldSettings AllowEdit="False"/>
</igDP:Field.Settings>
</igDP:Field>