or


function selectAll(){ var masterTable = $find('<%= gUnbilledOrders.ClientID%>').get_masterTableView(); masterTable.selectAllItems();}function clearAll(){ var masterTable = $find('<%= gUnbilledOrders.ClientID%>').get_masterTableView(); masterTable.clearSelectedItems();}function selectAll(){ var masterTable = $find('wSaveOptions_C_gUnbilledOrders').get_masterTableView(); masterTable.selectAllItems();}function clearAll(){ var masterTable = $find('wSaveOptions_C_gUnbilledOrders').get_masterTableView(); masterTable.clearSelectedItems();}
I wonder would it be possible when a listveiw is rendered as a list of checkboxes, add an option to display Select/Deselect All checkbox at the top of the list? It could separated by a horizontal line.
E.g.
Select/Deselect All
---------------------
Checkbox 1
Checkbox 2
Checkbox 3
Checkbox 4
...

