Reputation: 1942
Where can i change this options: http://www.trirand.com/jqgridwiki/doku.php?id=wiki:options in jqGrid Struts 2 plugin + Eclipse.
I need this to change the ignoreCase option.
Upvotes: 0
Views: 339
Reputation: 24396
If it is not supported in tags then you can try to change it in javascript. Get jqGrid object from DOM and apply options to it.
Update
$(document).ready(function() {
$("#id_of_element").jqGrid({
// options here
});
});
Upvotes: 1