JQGrid with Column Reordering

前端 未结 4 1437
难免孤独
难免孤独 2021-01-06 11:53

I have a jqgrid and I can reorder my columns with this option in my JQGrid

    jQuery(\"#list\").jqGrid({
                sortable: true,
                ...         


        
4条回答
  •  太阳男子
    2021-01-06 12:52

    Now in 2013 you can define the "exclude" parameter of "sortable" , like this :

    sortable: {
        exclude: '#'+ grid[0].id +'_actions_buttons'
    },
    

提交回复
热议问题