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

Untitled

By: a guest on Jul 1st, 2012  |  syntax: None  |  size: 0.38 KB  |  hits: 18  |  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. jqGrid. Animate hide/show columns
  2. $("#button").toggle(
  3.     function() {
  4.         $('#data').jqGrid('hideCol',['col1','col2','col3']);
  5.         // $("bla-bla").animate({
  6.             // width: 100
  7.         // }, 1000 );
  8.     },
  9.     function() {
  10.         $('#data').jqGrid('showCol',['col1','col2','col3']);
  11.         // $("bla-bla").animate({
  12.             // width: 0
  13.         // }, 1000 );
  14.     }
  15. );