Hi,
I have a WebTab control and add dynamically some tabs. Only first tab has content on initial stage, another tabs are empty. It is possible to load content on TabChanging with Ajax (without LoadOnDemandUrl and iframes) ?
Hello pobo001,
You could add new tab for example on button click, like this:
<asp:Button ID="Button1" Text="Add tab" runat="server" OnClientClick="addTab(); return false;" />
function addTab() { var webTab = $find("WebTab1"); webTab.addTab("Infragistics", "http://es.infragistics.com");}
Let me know if this helps.
Hi pobo001,
If you have any further questions, please do not hesitate to ask.