Create Tabs Which Also Have Sub-tabs?

Mar 9, 2011

I would like to create two tabs called Info and place. However when the mouse is over the info tab, all the sub-tabs associated with it will show-up and in this case, the sub-tab will be report_1 and report_2 and also when the mouse is over the place tab, all the sub-tabs associated with place will show up and in this case, the sub-tab will be place_report_1 and place_report_2. how do I go about doing this?

View 5 Replies


Similar Messages:

AJAX :: Tabs With JQuery Carousel / The First One Displayed On The Page Always Works. But Any Other Tabs Dont Work When I Select The Tab

Feb 14, 2011

I have been adding different JQuery Carousels to AJAX Tabbed Panels - the first one displayed on the page always works. But any other tabs dont work when I select the tab. I have about a dozen different carousels.

Can anyone recommend one that works in AJAX Tabs or how I can go about rectifying this?

View 1 Replies

MVC :: Jquery Tabs - Second And Third Tabs Do Not Fire Any Event On Button Click?

May 24, 2010

I have created an asp.net applications in which i am using jquery tabs to show say profile modifications information. I want user to see his profile info as well as he will be able to edit his details and save the information. for this purpose i have created an aspx page "MyProfile.aspx" and 3 ascx pages

say "page1", "page2" and "page3".

When i run "MyProfile.aspx" i can see all 3 tabs showing correct information. But problem is when i edit contents and try to save them back to the database. Contents on page1 are stored correctly. But page2 and page3 doest not fire any event. In all 3 pages I am using ajax n jquery to save data to database. and when i try to save contents of page2 and page3 nothing occurs.I am showing 3 tabs there of which first tab edits save the details but second and third tabs do not fire any event on button click.

View 12 Replies

Ajax Tabs - Is It Possible To Use Sub Tabs

Apr 8, 2010

Does Ajax Tab support using sub tabs (or children tabs)?I have a project where I need to show several tabs like "Sales" "Production" "Revenue" and when I click on for example "Sales" I would like to see a new tab tab with "Currentales", "History", "Comparison" etc etc. and be able to click each one of these for further processing.

View 3 Replies

AJAX :: Create A Usercontrol With Tabs - Getting An Error?

Jul 21, 2010

I though my error was from grid view but I realized it was from the tab container. So I did a bit more research. I wrote a small project and created a usercontrol with tabs in it and I wrote this there -

view plaincopy to clipboardprint?

View 6 Replies

Web Forms :: Create Tabs For Links In .aspx Page?

Sep 9, 2010

I need to create tabs for links in my .aspx page. I want the links to be separated out either with vertical lines or tabs. This code is part of my Master page.

<div
style="text-align:right"> <a
href
=
"start_page.aspx">Home Page</a>
<a
href
=
"">Default Page</a>
<a
href
=
"http://licensemon.enp.ril.com/">License Monitoring</a> <br
/><br
/></div>

View 2 Replies

AJAX :: Want To Create Ajax Tab And Also Want To Keep Tabs In Session?

Nov 15, 2010

I want to create ajax tab and also I want to keep tabs in session.

View 2 Replies

How To Use MultiView As Tabs

Feb 23, 2010

How to use MultiView as Tabs in Asp.net 2.0? Is there a good example available.

View 2 Replies

Can Hidetwo Tabs In A Tab Container

Jun 24, 2010

I'm running into a weird issue.. Basically, a user logs into a page and based on his role status(admin or user) determines how many tabs he sees in a tabcontainer. If he is just a "user" then tab index 0 and 1 need to be hidden because they contain admin only functionality.

if(user)
{
Container.Tabs[0].visible = false;
Container.Tabs[1].visible = false;
}

However the problem is if I set more than 1 tab index to visible = false the entire container disappears. Could this be a bug? I know you can only have one tab visible at a time.

View 2 Replies

Use Vertical Tabs With Jquery?

Jun 1, 2010

how to use vertical tabs with jquery. In my web site i want to use partial views i implemented it with jquery horizontal tabs but i want it with vertical tab as my links are in right side. so any one know the solution plz tel me. I am using asp.net mvc application

View 1 Replies

10 Jqgrid Can Work With Tabs

Nov 26, 2010

I have 10 pages, each with a jqgrid, and a separate master page. In the master page I use jquery tabs and divs to specify the jqgrid in each page. Everything works fine apart, except that all the pages are loading when the application starts. What I want is for them to load individually whenever a user clicks on a tab. The grid should then load and display the result. I've tried with div onclick (which specifes the page and tab too) but that doesn't work.

View 1 Replies

Can Put Two Tabs In Aspx Page

Oct 28, 2010

I need to put two tabs on my aspx page (c#). Is there already done tabs control for aspx ?

View 2 Replies

AJAX :: How To Play With The Tabs?

Jul 13, 2010

At page load I made several tabs Enable = false.

If a button is clicked I want to set Enable = true.

The problem is that this doesn't work, they stay not touchable. How come?

RelatieTabContainer.TabIndex = 2;
RelatieTabContainer.TabIndex = 0;

View 12 Replies

AJAX :: How To Keep Usercontrol In Tabs

Dec 13, 2010

[Code]....

I have dynamic ajax tabs that I want to load different usercontrols in each AjaxTabs.when Tab1 is created usercontrol1 loads in it.when Tab2 is created usercontrol2 loads in Tab2,but the problem is usercontrol1 does not remain in Tab1 when Tab2 is created and tab1 became empty.& When Tab3 is created, usercontrol2 does not remain in Tab2.I want to keep my usercontrols in my tabs,whenever I create a new Tab.

View 2 Replies

Close Session Of Same Application In All Tabs

Mar 25, 2011

In my web application, I use an exit button which runs session.abandon to close the session and then close the browser. It does not work with multi-tabs in IE. If I open my application in two tabs, I click on the exit button in one tab which abandons the session and close the tab. But the application in another tab can still work. Is there any way to close the session for this application in all the tabs?

View 3 Replies

Jquery Tabs Won't Select From The Index

Apr 15, 2010

I am using ASP.NET page with updatepanels and Jquery UI tabs. However, I'm having a problem with it. When I click on a button it should set the value of a hidden field which when the page posts back, it will select the new tab. So in document onload set the tab to the initialised value of the hidden field:

$(function()
{
var loadTab = $("#<%= hidTabSelected.ClientID %>").val();

$('#dvJqTabs').tabs(
{ selected: loadTab ,
select: saveTab
}
)
});

Now when I want to change the tab, in the ASP.NET page button click handler I do some processing and finally set hidTabSelected = 1 (previously 0). When the page posts because I am in UpdatePanels I won't get a doc ready event. So instead I intercept the pageLoad() and attempt to set the tab again:

function pageLoad()
{
alert('pageLoad()');
var loadTab = $("#<%= hidTabSelected.ClientID %>").val();
$('#dvJqTabs').tabs( { selected: loadTab } );
}

The tab is not getting selected? If I go into console of firebug and inspect $("#hidTabSelected").val() I get 1. So why isn't the 2nd tab showing?

View 2 Replies

Jquery UI Tabs Only Reload The Tab Contents

Jun 10, 2010

<div id="example">
<ul>
<li><a href="ahah_1.aspx"><span>Content 1</span></a></li>
<li><a href="ahah_2.aspx"><span>Content 2</span></a></li>
<li><a href="ahah_3.aspx"><span>Content 3</span></a></li>
</ul>
</div>

I am using Jquery ui tabs in Ajax mode. When my page ahaha_1.aspx postbacks my main page dissapears and I am redirected to ahaha_1.aspx. How do I get it to only reload the tab and not the entire page.

View 2 Replies

AJAX :: Ordering Tabs In A Tab Container?

Jun 4, 2010

I need to change the order of some tabs in a tab control, how can achieve this?

View 4 Replies

AJAX :: Tab Container - Tabs Are Not Showing Up

Jul 16, 2010

I have a web page with two tabs, "Release Inventory" and "Recreate Pull Sheet". I am using a tab container and tab panels. It looks fine in the design view but as soon as I view it in a brower the tabs don't show up. All I see is the Header text for the tabs. It looks like this:

"Release InventoryRecreate Pull Sheet"

You can click "Release Inventory" or "Recreate Pull Shee" and you will see the information in the tabs, but the actual tab appearance is not showing up.

Here is my code:

[Code]....

View 5 Replies

C# - Enable Disable Tabs In A Tab Container?

Sep 1, 2010

I have a tab container in aspx page and i want to enable disable the last tab in aspx page my tab container is like below

[Code]....

Now for disabling the last tab i used the following in code behind page load:

//tabAdvanceSettings.Enabled = false;

I also want to enable this tab panel on client side when a user uses a shotrcut like Ctrl + Shif + A as shown below but this shortcut only enables the tab not the two user controls ptresent in the last tab. The code for enabling the last tab is :

if (e.keyCode == 65 && isCtrl == true && isShift == true) // Ctrl + Shift + A
{
$find('<%=tabContainer.ClientID%>').get_tabs()[2].set_enabled(true);
}

How can i enable the last tab and also the controls present in the last tab?

View 2 Replies

AJAX :: Collapsiblepanelextender And A TabContainer With Two Tabs?

Jan 6, 2011

I have a Collapsiblepanelextender and a TabContainer with two tabs. the code works fine in FF and Chrome but fails in IE8. I am using VS2008 .Net 3.5 and the latest AjaxToolkit.

I am trying to control the collapsible behavior through tab clicking using javascript. here is the code to replicate my problem.

The aspx.cs code:

[Code]....

View 1 Replies

AJAX :: Dynamically Control Tabs Css ?

May 2, 2010

I am using Ajaxtoolkit in my application. I am declaring the tabcontainer and tab panels on the serverside. I just have my Updatepanel on the Client-Side. I was wondering how to assign css to the tabs like onhover or click would change its background color and highlight the tab up.

Secondly, since I am dynamically creating these tabs, how would I put a close for each of the tabs?

View 1 Replies

AJAX :: Add Close To All The Tabs In A Tabcontainer?

Jun 16, 2010

how to add close to all the tabs in a tabcontainer.The scenario is, I have only TabContainer on aspx and m populating tabs with UserControls programmatically (with use of DOM). How can I develop the close of a tab with small X on each of the tab? I am not sure how many tabs I have.

View 4 Replies

Web Forms :: Post Values In Tabs?

Aug 13, 2010

I was woundering if i could be lead in the right direction.

I have three tabs on my page and on the first tab i have a txtbox which i supply with a name. On my tab 2. I have a ddl which i will include the value of the txt i was working on on tab1

Now i will like to post the value on the textbox in tab1 to the ddl in tab2(Searching through it and getting the right info)

The way i have it right now is just adding another value into the ddl and its not searching properly even thou i know there is a record in the db.

View 17 Replies

Tabs Gets Loaded In The Application Start Up Itself?

Nov 27, 2010

<div id="tabs">
<ul>
<li><a href="somepage.aspx" title="some_page"><span>some_page</span></a></li>
<li><a href="somepage1.aspx" title="some_page1"><span>some_page1</span></a></li>
</ul>
</div>
[code]...

This function works for me but what happens is all the tabs gets loaded in the application start up itself.Which i don't want to happen. I want something like when the tab is clicked its content should get loaded.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved