In the tutorial for UI Markup using Stock Tracker App [1] [2], there's this
bit of code.
<Border styles="{padding:6, color:10}">
<bxml:include bxml:id="detailPane" src="detail_pane.bxml"/>
</Border>
Suppose I wish to manipulate styles of the entire app, and so I traverse
through all the components starting from the main BXML file. When I reach
the right side of Split Pane I encounter a ref to another BXML file i.e
detail pane. How can I get the components of that detail pane into my
class? I've tried using (Border) component.getContent() but all I get is
the name of the file, not the component.
[1] http://pivot.apache.org/tutorials/stock-tracker.ui.html
[2] http://pivot.apache.org/tutorials/stock-tracker.html
<http://pivot.apache.org/tutorials/stock-tracker.ui.html>--
Regards,
Ajay Bhat