hi
How do i make the navigate url to link to a section of a page? I try using the code below but is not working. Here is what i want to accomplish using RadPanelBar instead of anchor tag http://www.echoecho.com/htmllinks08.htm. Thanks a lot
<telerik:RadPanelItem runat="server" Text="Customers">
<Items>
<telerik:RadPanelItem runat="server" NavigateUrl="#customer" Text="View Customers">
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelItem>
<div class="panel panel-primary" style="margin-right:5px;margin-top:2px">
<div class="panel-heading" id="customer">
<h3 class="panel-title">Customer</h3>
</div>
<div class="panel-body">
<h4>How to use View Customers</h4>
<hr />
<p></p>
</div>
</div>