tags:

views:

147

answers:

1

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

+2  A: 

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

gridComplete : function() {
  $("#myGridID")[0].toggleToolbar();
}
John Hartsock
That was really close...I actually needed $('#myGridID')[0].toggleToolbar();Thanks John! If you update the answer, I'll accept it.
btelles
@btelles...Sorry about that but good catch...glad I could help
John Hartsock