btelles
btelles

Reputation: 5420

jQGrid: Is it possible to start the grid with the search toolbar on?

Is it possible to get the jQGrid toolbar to show up on page load?

Upvotes: 1

Views: 581

Answers (1)

John Hartsock
John Hartsock

Reputation: 86872

Yes I believe it is possible. Try using the gridComplete option

gridComplete : function() {
  $("#myGridID")[0].toggleToolbar();
}

Upvotes: 3

Related Questions