Hi,
When defining TreeGrid components with selectionAppearance : 'checkbox', we used to have (7.0rc2)
a checkbox at the TreeGrid header level which allowed users to clear/set all items at once. With the
upgrade to 8.0 nightly builds, we lost the checkbox in the header portion.
Following is the code to reproduce :
Any idea how to have that checkbox in the header portion appear again ?
Thanks,
When defining TreeGrid components with selectionAppearance : 'checkbox', we used to have (7.0rc2)
a checkbox at the TreeGrid header level which allowed users to clear/set all items at once. With the
upgrade to 8.0 nightly builds, we lost the checkbox in the header portion.
Following is the code to reproduce :
Code:
var treeGrid = TreeGrid.create ({ dataSource : this.treeDataSource, isFolderProperty : 'isFolder', selectionProperty : 'isSelected', nodeIcon : MeiReportNavigator.dimIcons.find('name', dimName).icon, folderIcon : MeiReportNavigator.dimIcons.find('name', dimName).icon, selectionAppearance : 'checkbox', leaveScrollbarGap : false, layoutMargin : 0, width : '100%', height : '100%', layoutMargin : 0, membersMargin : 0, visibility : 'hidden', data : data, fields : [ { name : 'caption', treeField : true } ] }); if (isSingleSelect) treeGrid.setSelectionType('single');
Thanks,
Comment