I have rowselectors with checkboxes enabled on igGrid - all works Ok but how do I add some Text to appear at column header.
features: [
{
name:"RowSelectors",
enableCheckBoxes:true,
enableRowNumbering:false,
rowSelectorColumnWidth: 40
},
name:'Selection',
mode:"row",
multipleSelection:true
}
]
hi,
we currently don't offer an option to set text in the "check all" checkbox header, but you can add a text element after the grid has been rendered in the following way:
$("th.ui-iggrid-rowselector-header").append("<span> Some header text </span>");
Hope it helps. Thanks,
Angel