This question is locked. New answers and comments are not allowed.
I want to have a column of checkboxes in my grid to select individual rows, and have a checkbox in the column title for "select / deselect all". In the beta release (2009.3.1320) I could achieve what I wanted like this:
... but in the 2010.1.309 release this no longer works. The checkboxes in the rows appear correctly (via Format) but the column title shows the encoded Html source instead of a checkbox. Is this a deliberate change, and if so is there an alternate way of getting a checkbox into the column title? I don't want to use a custom toolbar for one control as this would waste space, and I can't use the .Template property as I'm using Ajax binding on my grid.
| .Columns(columns => columns |
| .Add(c => c.AccountId) |
| .Format("<input type=\"checkbox\" class=...) |
| .Title("<input type=\"checkbox\" class=...) |
| .Encoded(false) |
... but in the 2010.1.309 release this no longer works. The checkboxes in the rows appear correctly (via Format) but the column title shows the encoded Html source instead of a checkbox. Is this a deliberate change, and if so is there an alternate way of getting a checkbox into the column title? I don't want to use a custom toolbar for one control as this would waste space, and I can't use the .Template property as I'm using Ajax binding on my grid.