i use dhtmlxconnection for java , and i want to refresh the gird’s data after one event,how to do it?help me please .
in interface throw are to grid,the second one read the sum of the first one, and i want to change the second and the first can refresh at the same time.
In common case you can reload grid fully by using
grid.clearAll()
grid.load(url); //same connector’s URI
More complex scenario will be to transfer necessary extra data from server side as part of dataprocessor’s response any use grid.cell(i,j).setValue(some) to change only the cell in question