Hi
I have Grid with 4 columns. When I edit a row, enter number in cell 2, I want to update cell 4 with the result of cell 2 - cell 3.
Can anyone advice how I can do this urgently? Thanks in Advance
Below is the code of my grid
@(Html.Kendo().Grid<TransactionCoBroker>().Name("GridCommExCoBroker").Editable(editable => editable.Mode(GridEditMode.InLine)).Columns(columns =>{    columns.Command(c => c.Edit());    columns.Bound(u => u.Name).Title("Name");    columns.Bound(u => u.FNet).Title("Net"));    columns.Bound(u => u.FTax).Title("Tax"));    columns.Bound(u => u.FGross).Title("Amount"));}).DataSource(dataSource => dataSource.Ajax().Model(model =>{    model.Id(id => id.ICobrokerId);    model.Field(p => p.UName).Editable(false);    model.Field(p => p.FNet).Editable(true);    model.Field(p => p.FTax).Editable(true);    model.Field(p => p.FGross).Editable(false);}).Events(e => e.Error("onError").RequestEnd("onRequestEnd")).ServerOperation(true).Read(r => r.Url("?handler=GetExCoBrokerComm").Data("GetTransID")).Update(r => r.Url("?handler=SaveBrokerComm").Data("GetTransID"))))