Hi,
How can I hide the edit sign in row header.
I need the row header for selection but not the edit sign.
regards,
pgr2007
I assume you mean the little pencil icon. There's no property to hide this, unfortunately. You should Submit a feature request to Infragistics
Do you want to just hide the pencil icon or hide all of the symbols? You might be able to acheive this using a DrawFilter and prevent the drawing of all symbols. Or perhaps you could turn off the RowSelectors and add an unbound column and make it look like a RowSelector.
Is there any EndEdit() funtion either in grid or datatable which is bind with grid. So that I can hide the pencil mark on row selector.
Regards,
Ceaser
The easiest way to do this is to call the row's Update() method. This will push any changes made to the grid row to its underlying data source.
Hi, Vince
Thanks for the reply and it worked.