You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
allow user to update cell value in updatedValue
e.g.
// Bind user-specified events if they exist
if (typeof columnDef.afterChange == 'function') {
let updatedValue = columnDef.afterChange(newValue, td);
if (updatedValue) td.text(updatedValue);
}