Unanswered: Multiple UiBinder files into one tab panel uibinder xml
Unanswered: Multiple UiBinder files into one tab panel uibinder xml
I have created one UiBinder file, which contains the TabPanel with 3 child tabs. I have created 3 child tabs as separate Uibinder xml files. Can anyone help how to include 3 uibinder xml into mail uibinder xml to get the TabPanel work properly.
Or please provide me the best way to achieve tab functionality
You should be able to just refer to those classes that those three other uibinder files map to, and add them in your main uibinder xml. See in the uibinder docs https://developers.google.com/web-to...Using_a_widget where they show making a new xmlns:my=... - point that at the package with your other widgets, and then you can say <my:CustomTabA />, etc.
Using this, adding your own widget classes is just like adding any other classes.