Inline editing with onchange event impossible

6
I have a datagrid with inline editing on. This grid has 3 columns "Amount", "Price" and "Total". I want "Total" to be calculated from "Amount" times "Price". but I can't do an onchange event on a cell of the datatgrid with inline editing. How can I do this?
asked
1 answers
7

In inline editing the object is committed when changing fields in a row. Hence, you can accomplish the behavior you want by setting an 'on commit' event on the metaobject shown in the inline editing grid.

You can set an 'on commit' event in the metamodel by double clicking a metaobject and navigating to the events tab.

answered