kozla13
kozla13

Reputation: 1942

change jqGrid options in Struts 2

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

Answers (1)

Aleksandr M
Aleksandr M

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

Related Questions