Reputation: 5420
Is it possible to get the jQGrid toolbar to show up on page load?
Upvotes: 1
Views: 581
Reputation: 86872
Yes I believe it is possible. Try using the gridComplete option
gridComplete : function() {
$("#myGridID")[0].toggleToolbar();
}
Upvotes: 3