Change style of jqGrid

后端 未结 7 1899
闹比i
闹比i 2020-12-23 12:14

I am using jqGrid 3.5. Can I change the style and look of the grid and make it more beautiful using jQuery or custom CSS or something else?

7条回答
  •  一整个雨季
    2020-12-23 13:04

    You can remove all ui-grid classes:

    $("[class^='ui-jqgrid']").removeAttr('class');
    

    This may have performance issues if your grid size is big.

提交回复
热议问题