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.
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.
false
rowCallback
onUpdate