We are using dojo without pagination and showing all records at once. We need to call a java script method when the entire grid has been rendered completely, so that the grid rows and cell can be used for DOM manipulation.
I am trying following code, but its not working.
aspect.after(grid,"dgrid-refresh-complete",function(){
});
grid.on("dgrid-refresh-complete", function(event){
});
dgrid-refresh-complete
is implemented specifically inOnDemandList
andPagination
. If you're using theSingleQuery
mixin instead (as in the tutorial for 0.3 or 0.4), it should be feasible to institute the same kind of event as follows:So, for example, in 0.3, SingleQuery's
refresh
method would look like this: