hi ,
can any one guide me how to apply read only properties in infragestics datagrid
thanks in advance
Hello Priyanka,
Thank you for your post. I have been looking into it and I can suggest you set the XamDataGrid's FieldSettings' AllowEdit Property to False like this:
<igDP:XamDataGrid> <igDP:XamDataGrid.FieldSettings> <igDP:FieldSettings AllowEdit="False"/> </igDP:XamDataGrid.FieldSettings> </igDP:XamDataGrid>
Please let me know if you need further clarifications on this matter.
Looking forward for your reply.
Hi,
I want to make entire datagrid as read-only. Please reply
Thanks
Priyanka
I got it thanks
Yes, as I said in my previous post, you can set the AllowEdit property of the FieldSettings, like this:
<igDP:Field Name="department">
<igDP:Field.Settings>
<igDP:FieldSettings AllowEdit="False"/>
</igDP:Field.Settings>
</igDP:Field>
hi alex,
u r right ,i want the fields (rows/cells) should not be editable(not allow to delete). is there any properties for that