using: SNAPSHOT_v9.0d_2013-04-30/PowerEdition Deployment (built 2013-04-30)
same problem with any browser - using Chome Version 27.0.1453.110
I have this simple line of code acting on a TreeGrid:
When executed, it does appear to select the single record I wanted to select (as evidenced by firing of the selectionChanged event in assetContainerTree). However, there is no visual indication that the record was selected in the TreeGrid.
How do I make it visually reflect the selected record in the TreeGrid control? (as if I had actually clicked on it which changes the background color of the selected item).
same problem with any browser - using Chome Version 27.0.1453.110
I have this simple line of code acting on a TreeGrid:
Code:
assetContainerTree.selectSingleRecord(assetContainersList.getSelectedRecord());
How do I make it visually reflect the selected record in the TreeGrid control? (as if I had actually clicked on it which changes the background color of the selected item).
Comment