Hello Everyone
I have to Remove Pencil Image in UltraGrid which is visible when column in grid is updated. Is there any property in UltraGrid to set in order to get rid of this pencil image while updating.
The pencil icon indicates that the row has pending changes that need to be written to the grid's DataSource.
So are you asking how to hide this icon wihout committing the changes? Or do you want to commit the changes?
The former doesn't really make any sense. So your question is probably how to commit the changes. The answer to that is to call Update on the row (to commit a single row) or UpdateData on the grid (to commit all rows).
Hi Mike,
I am kind of similar situation where by I have to hide the image without committing the changes. I don't want to completely blank out the image by setting DataChangedImage to null as the image should be visible in other scenarios. Can you please help he how can I achieve this.
Thanks Mike for your reply. It really works fine.
i called the grid.updatedata and it didnt work.