I have a tab that is a search screen that displays results in a tableview. When I double click on a row in the tableview, I need to open the detail in a new tab.
I used ComponentMouseButtonListener to get the double click and the following code to add a tab. TabPane tab = new TabPane(); tabpane.getTabs().add(tab); TabPane.setTabData(tab, "Document " + tabpane.getTabs().getLength()); tabpane.setSelectedIndex(tabpane.getTabs().getLength() - 1); But this is an empty tab. How do I open a tab with my bxml for the detail? -- View this message in context: http://apache-pivot-users.399431.n3.nabble.com/open-detail-in-new-tab-tp3552769p3552769.html Sent from the Apache Pivot - Users mailing list archive at Nabble.com.
