I have a grid in which I am using the columns.Select (see code below) and want a title to display next to the check box in the header where the user clicks the check box to select all rows. There is Title property but when I give it a value it does not display in the header as the other titles do.
This is what I have
.Columns(columns =>
{
columns.Bound(i => i.lotNumber).Title("Lot Number").Width(100);
columns.Bound(i => i.lotLocation).Title("Lot Location").Width(100);
columns.Bound(i => i.lotQuantity).Title("Lot Quantity").Width(100).ClientFooterTemplate("Total: #=sum#");
columns.Bound(i => i.plannedStartDate).Title("Planned Start Date").Width(100).Format("{0:MM/dd/yyyy}");
columns.Bound(i => i.batchDueDate).Title("Batch Due Date").Width(100).Format("{0:MM/dd/yyyy}");
columns.Select().Title("Pulled").Width(100);
})
Below is a screenshot of the results. I want the text Pulled next to the check box in the header.