SMART datagrid v.1 > Classes > RowGroup
如果为true,就会在合并模式的合并单元格或组页眉,显示展开或关闭组的图标按钮。
通过expanderStyles,指定按钮的颜色等。
默认值为true.
$('#toggleExpander').click(function (e) {
var visible = grid.rowGroup().expanderVisible();
grid.rowGroup().setExpanderVisible(!visible);
});