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

    Hi Rohit, you can achieve this by using the row save or update event (depending on the grid or table library you’re using) and programmatically setting the hidden column’s value to false after the add or edit action is completed; for example, if you’re working with DataTables or a similar grid, you can capture the rowCallback or onUpdate event, then simply access the hidden field by column name or index and set it to false—this ensures that every time a row is added or updated, the hidden field is automatically updated as required, just like Ali Ubaid used a similar approach in his project to handle hidden status flags efficiently.

Children
No Data