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
1375
Need to update one hidden column value to false after editing or adding a row is done.
posted

Hello sir/mam,

When adding/updating a row, after I click on done I need to o update one hidden column value to false. How can I achieve it? Could you help me with it.

Parents
No Data
Reply
  • 0
    Offline posted

    To update a hidden column value to false after adding or editing a row, you can handle it in the grid’s “RowUpdated” or “EditDone” event, depending on your framework. In the event handler, check if the operation is “add” or “update,” and then programmatically set the hidden column’s value to false before saving the changes back to the data source. For example, if you’re using JavaScript or jQuery with a grid component, you can access the row data object and update the field directly using something like rowData.hiddenColumn = false; before committing. For more implementation tips, you can refer to guides like those found on the blog Theflashyinfo for practical coding examples and UI enhancement methods.

Children
No Data