SMART datagrid v.1 > Classes > OperateOptions

Back  Forward

DataLudi.OperateOptions.exceptFixedRowsFromSorting  property

如果为true,就会从排序中,排除固定行。 

默认值为true.

Getter
function exceptFixedRowsFromSorting(): Boolean
Setter
function setExceptFixedRowsFromSorting(value: Boolean)
Code -1
    grid.setOptions({
        operate: {
            exceptFixedRowsFromSorting: true,
            exceptFixedRowsFromFiltering: true
        }
    });
Code -2
    grid.setOperateOptions({
        exceptFixedRowsFromSorting: true,
        exceptFixedRowsFromFiltering: true
    });
Code -3
    grid.operateOptions().setExceptFixedRowsFromSorting(true);
See Also
exceptFixedRowsFromFiltering
sortingEnabled
fixedRowCount
Examples
列排序