I have 3 tabs on web page. When I load the page, contents of all 3 tabs are being loaded in corresponding tabs. but I want the contents to be loaded only when the tab is clicked. Can you suggest me some way to accomplish this?
Thks
R u using Ajax Tabpanel control or custom control for tabbing. If custom control then you have to handle click event for each image button which represents that tab.
Thanks
Mahesh
Originally posted by Garima12
I have 3 tabs on web page. When I load the page, contents of all 3 tabs are being loaded in corresponding tabs. but I want the contents to be loaded only when the tab is clicked. Can you suggest me some way to accomplish this?
Thks
Hi Mahesh,
I am using custom control. Pasting my code below. Please suggest something if you can:
<table border ="0" cellpadding="0" cellspacing ="0">
<tr>
<td>
<div class="tab-pane" id="tabPane1">
<script type="text/javascript">
tp1 = new WebFXTabPane( document.getEle mentById( "tabPane1" ) );
</script>
R u using Ajax Tabpanel control or custom control for tabbing. If custom control then you have to handle click event for each image button which represents that tab.
Comment