Hi,
I have a grid with
- grouping on by default
- Checkbox SelectionAppearance
- Simple SelectionType
- canExpand records
- recordEnabled/disabled
When one record becomes selected, it can select other records which then become disabled. Users cannot unselect it, and it shows the row in disabled style.
That's all good.
Some records can be expanded to show some more information about it (using getExpansionComponent APIs here). When a row is disabled however, the expansion button doesn't do anything when clicking it.
So is this click also included in the expected behavior of 'nor will it respond to mouse clicks':
or does the click here was supposed to only ignore 'click to select' - as that would have been the excellent behavior for my case here.
Would there still be a chance to use the built in 'disabled record property' and a way to open the expansion when a click on that button occurs?
v8.3d_2012-11-11/Pro Deployment (built 2012-11-11)
thanks,
I have a grid with
- grouping on by default
- Checkbox SelectionAppearance
- Simple SelectionType
- canExpand records
- recordEnabled/disabled
When one record becomes selected, it can select other records which then become disabled. Users cannot unselect it, and it shows the row in disabled style.
That's all good.
Some records can be expanded to show some more information about it (using getExpansionComponent APIs here). When a row is disabled however, the expansion button doesn't do anything when clicking it.
So is this click also included in the expected behavior of 'nor will it respond to mouse clicks':
com.smartgwt.client.widgets.grid.ListGrid.setRecordEnabledProperty(String) :
Setting this property on a record will effect the visual style and interactivity of the record. If set to false the record (row in a com.smartgwt.client.widgets.grid.ListGrid or com.smartgwt.client.widgets.tree.TreeGrid) will not highlight when the mouse moves over it, nor will it respond to mouse clicks.
Setting this property on a record will effect the visual style and interactivity of the record. If set to false the record (row in a com.smartgwt.client.widgets.grid.ListGrid or com.smartgwt.client.widgets.tree.TreeGrid) will not highlight when the mouse moves over it, nor will it respond to mouse clicks.
Would there still be a chance to use the built in 'disabled record property' and a way to open the expansion when a click on that button occurs?
v8.3d_2012-11-11/Pro Deployment (built 2012-11-11)
thanks,
Comment