Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
185
Removing Pencil Image in UltraGrid while column in grid is updated
posted

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.

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    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).

Children