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
120
Upgrading to the latest version of infragistics add a new function next to each data field marked by a "pencil".
posted

Hello, 

Upgrading to Infragistics 8.2 we noticed that every data field on everyscreen is presenting a "pencil", showing like the field is editable.  I need to make this icon desapear now that is anoying for us in the whole application. 

Thanks in advance,

Rocio

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    Hi Rocio,

    The pencil icon is not new, it has always existed since v1.0 of the grid. It does not indicate that the row is editable, it indicates that the row has pending changes that have not been comitted to the underlying data source of the grid. 

    So something in your code must be updating values in the grid cells. All you have to do to get rid of the pencils is to commit those changes using the row.Update method, or the UpdateData method on the grid to update all rows. There is also a CancelUpdate method if you want to cancel the pending changes in the row. 

Children