I'm working on a view that has the following structure:
<h2>Data Package Management</h2>
<div class="row push-down-md">
<tabs data="tabData" type="tabs"></tabs>
<div class="col-md-12">
<tabset>
<tab heading="Create">
<div>
Create Package
</div>
</tab>
<tab heading="Import" ui-sref="app.maintenance.portability.import">
<a ui-sref="app.maintenance.portability.import">Hello</a>
<div ui-view></div>
</tab>
</tabset>
</div>
</div>
Upon clicking the "Import" tab, it directs to the route 'app.maintenance.portability.import' in a new URL. However, I aim to display the contents of that state within the <Div>
section below the tab instead of launching it in a separate window. Is there a way to achieve this?