- jqGrid. Animate hide/show columns
- $("#button").toggle(
- function() {
- $('#data').jqGrid('hideCol',['col1','col2','col3']);
- // $("bla-bla").animate({
- // width: 100
- // }, 1000 );
- },
- function() {
- $('#data').jqGrid('showCol',['col1','col2','col3']);
- // $("bla-bla").animate({
- // width: 0
- // }, 1000 );
- }
- );