Hello,
i'm using webdatagrid 2012 vol 1 with unbound columns, and i'd like to recalculate unbound columns when i exit cell editting mode in adding row . Please tell me how to do that. Sorry for my poor English.
Hi ThuyNga Nguyen,
Thank you for posting in our forum.
If you want to set value for an unbound column when adding new row, you could use the ExitingEditMode client-side event:
function ExitingEditModeHandler(sender, eventArgs) { eventArgs.getCell().get_row().get_cellByColumnKey("Unbound_Field1").set_value("some text");}
Please let me know if this helps.