1
Help for ParamQuery Grid (free version) / Re: Multiple Tabs having Multiple Grids Issue
« on: June 03, 2015, 05:56:28 am »
Anyone who can help me with this issue???
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Uncaught Error: cannot call methods on pqGrid prior to initialization; attempted to call method 'refresh'
$(document).ready(function() {
$("#tabs").tabs({
activate: function(event, ui) {
alert("Activate event fired for #tabs");
debugger;
$( "#tabs" ).pqGrid( "refresh" );
}
});
$("#tabs").on("tabsactivate", function(event, ui) {
$( "#tabs" ).pqGrid( "refresh" );
});
});