Wednesday, March 21, 2012

AJAX Tab Control

Hi,

I tried to follow the sample website for AJAX Tab control. It does not work for me. Is thier any videos on how to use the New TAB Control.

Please forward the links. Much thanks........

I can't find a video for this one - but here is a snippet that may help - the most common problem I've come across is people not popping the TabPanel inside a TabContainer...

"server" ID="TabContainer1" Height="150px">"Server" ID="TabPanel1" HeaderText="Summary">

Test 1

"Server" ID="TabPanel2" HeaderText="Categories">

Test 2

"Server" ID="TabPanel3" HeaderText="Additional Details">

Test 3


Okay, a fair bit of code went missing then! Must have selected the wrong language - here is another attempt:

<ajaxToolkit:TabContainer runat="server" ID="TabContainer1" Height="150px"><ajaxToolkit:TabPanel runat="Server" ID="TabPanel1" HeaderText="Title 1"><ContentTemplate><p>Test 1</p></ContentTemplate></ajaxToolkit:TabPanel><ajaxToolkit:TabPanel runat="Server" ID="TabPanel2" HeaderText="Title 2"><ContentTemplate><p>Test 2</p></ContentTemplate></ajaxToolkit:TabPanel><ajaxToolkit:TabPanel runat="Server" ID="TabPanel3" HeaderText="Title 3"><ContentTemplate><p>Test 3</p></ContentTemplate></ajaxToolkit:TabPanel></ajaxToolkit:TabContainer>

No comments:

Post a Comment