Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
suryajeganathan
Contributor III
Contributor III

Button in Mashup

Hi

I want to create a button navigation in Mashup. I need a button in the page by click it has to navigate from Build Your Query(Tab Name) to Market View(Tab Name) by the button click

I already have side navigation in place. Below mentioned is the code for the same

HTML:

<paper-drawer-panel id="nav-drawer" drawer-width="150px">
<div drawer="">
<paper-menu selected="0">

<!-- LEFT NAV -->
<!-- Edit <paper-item> to customize left panel -->
<!-- A <paper-item> will navigate to the corresponding .paper-body view (below) -->
<paper-item>
<div class="icon">
<i class="fa fa-tachometer" aria-hidden="true"></i>
</div>
<div class="menu-option" href="Build">
Build Your Query
</div>
</paper-item>
<paper-item>
<div class="icon">
<i class="fa fa-compass" aria-hidden="true"></i>
</div>
<div class="menu-option" href="Marketview">
Marketview
</div>
</paper-item>
<paper-item>
<div class="icon">
<i class="fa fa-file-text" aria-hidden="true"></i>
</div>
<div class="menu-option" href="Customer">
Customer List
</div>
</paper-item>

</paper-menu>
</div>

0 Replies