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
2010-06-09 16:41:29
That was really close...I actually needed $('#myGridID')[0].toggleToolbar();Thanks John! If you update the answer, I'll accept it.
btelles
2010-06-10 19:05:04
@btelles...Sorry about that but good catch...glad I could help
John Hartsock
2010-06-10 19:45:44