Ola
I have a master layout and also created a single child layout based on custom views. I want to load the child layout to a specific element id of the master layout.
This is my code.
This is what is generated..
What can I be missing here? Thanks.
I have a master layout and also created a single child layout based on custom views. I want to load the child layout to a specific element id of the master layout.
This is my code.
B4X:
'load the layout we will use
BANano.LoadLayout("#body", "mashlayout")
'load the button inside the template1 id
BANano.LoadLayout("#template1", "viewbutton")
This is what is generated..
HTML:
<div id="app">
<v-app id="inspire">
<v-app-bar id="navbar" app="true" color="indigo" dark="true" tile="true" value="true">
<v-app-bar-nav-icon id="navmenu" v-on:click.stop="navmenu_clickstop"></v-app-bar-nav-icon>
<v-toolbar-title id="navbartitle">Application</v-toolbar-title>
</v-app-bar>
<v-navigation-drawer id="navdrawer" v-model="drawer" app="true"></v-navigation-drawer>
<v-content id="mashcontent">
<v-container id="mashcontainer" fluid="true" class="fill-height">
<v-row id="r1" align="center" justify="center">
<v-col id="r1c1" class="text-center">
<v-tooltip id="tooltip1" fixed="true" left="true" open-on-hover="true"><template id="template1"
v-slot:activator="{ on }"></template><span id="span2">Source</span></v-tooltip>
</v-col>
</v-row>
</v-container>
</v-content>
<v-footer id="navfooter" app="true" color="indigo" tile="true"><span id="span1" class="white--text">©
2019</span></v-footer>
</v-app>
</div>
What can I be missing here? Thanks.