SmartClient Version: v10.1p_2015-12-16/Enterprise Development Only (built 2015-12-16)
I'm using the SplitPane.setNavigationPane method to switch a TreeGrid from a SplitPane to another SplitPane, as a navigationPane.
First call to splitPane1.setNavigationPane(treeGrid) succeed, the treeGrid is shown.
Second call to splitPane2.setNavigationPane(treeGrid) succeed, the treeGrid is shown in the 2nd splitPane.
Third call to splitPane1.setNavigationPane(treeGrid) has no effect, the treeGrid is not shown in the 1st splitPane.
As a test case, I can obtain a similar effect in the #responsiveDesignMobileSample sample:
1. click on the handset tab
2. run the following code:
the treeGrid disappear
3. run:
the treeGrid is not shown again
I'm using the SplitPane.setNavigationPane method to switch a TreeGrid from a SplitPane to another SplitPane, as a navigationPane.
First call to splitPane1.setNavigationPane(treeGrid) succeed, the treeGrid is shown.
Second call to splitPane2.setNavigationPane(treeGrid) succeed, the treeGrid is shown in the 2nd splitPane.
Third call to splitPane1.setNavigationPane(treeGrid) has no effect, the treeGrid is not shown in the 1st splitPane.
As a test case, I can obtain a similar effect in the #responsiveDesignMobileSample sample:
1. click on the handset tab
2. run the following code:
Code:
isc_SplitPane_0.setNavigationPane(isc_TreeGrid_2)
3. run:
Code:
isc_SplitPane_2.setNavigationPane(isc_TreeGrid_2)
Comment