Struts 2 jQuery Subscribe is called more than once
问题 In the struts 2 jQuery plugin there is a publish/subscribe framework which can be used for event invocation. Consider this sample.... One can change the grid behavior when grid is loaded by subscribing too onGridCompleteTopics event <sjg:grid id="gridtable" dataType="json" href="%{url}" gridModel="gridModel" direction="%{pageDir}" width="800" shrinkToFit="true" onGridCompleteTopics="grid_compelete"> And then in the js: $.subscribe('grid_compelete', function(event, data) { //do some thing }