Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 15th, 2012  |  syntax: None  |  size: 0.38 KB  |  hits: 25  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Re-load jqgrid data based on the asp combobox selection
  2. $("#txtGroupLevel").change($("#table").jqGrid({
  3.          .....
  4.   postData: { groupId: $("#txtGroupLevel option:selected").val() },
  5.   .....
  6.        
  7. $(function () {
  8.  
  9.         $("#txtGroupLevel").change($("#table").trigger("reloadGrid"));
  10.  
  11.     });
  12. ........
  13. .........
  14. postData: { groupId: $("#<%= txtGroupLevel.ClientID %>").val() }