ParamQuery grid support forum
General Category => ParamQuery Pro Evaluation Support => Topic started by: rdorazio on May 25, 2016, 04:31:59 am
-
I have a question , how do I trigger a LostFocus event in the particular field editing and calculating the sum of two fields of the column.
-
The sum or any dependent cells can be calculated with column.formula callback.
http://paramquery.com/pro/demos/grid_formula
Rest of your question is not clear how it relates to computed column, could you please elaborate it bit more.
-
See the Total column has not been updated .
How do I update it when losing the focus of the Exports column
-
It can be corrected by refreshing row in cellSave event.
cellSave: function(evt, ui){
this.refreshRow(ui);
}
The demo is corrected now.