Questions tagged [tabpanel]

A GUI pattern, a panel that contains one or more tabs within his borders. Tab panel allows user to display multiple pages within one window(panel), easily switching between pages with a single click. Tab panel is a "parent" of a tab.

443 questions
0
votes
0 answers

Prevent Default behavior of Ajax TabPanel using JQuery onclick call?

I have the code: $("[id$='tab_TabContainer1_TabPanel1']").click(function (event) { event.preventDefault(); //doesn't work apparently but doesn't error anywhere. var container = $find('TabContainer1'); //select the container…
0
votes
1 answer

cant customize the tabbar view in TabPanel in sencha touch 2. The default view is showing always.

I want to change the view of tabs i want them large & rectangle but they are showing like default capsules (rectangular with curved radius). How to customize them? HERE IS THE CODE var entryForm = Ext.define("TimeSheet.view.Newentry", { extend:…
0
votes
1 answer

I have a grid in a tab within a tabpanel. how do I refresh the grid in the open tab?

What if I have a grid in an open tab within a tabpanel and I want to refresh the grid content WHILE THE TAB IS OPEN. How do I go about refreshing the grid content? I have a tab panel and each new tab contains a grid. In any open tab I can make…
PwelbyAtQ
  • 3
  • 1
  • 5
0
votes
1 answer

Ext JS tab panel detect tab destroy

How can I detect when a tab in a tab panel is destroyed? There seems to be no event for that (only for tab and title change) I know I can listen on 'destroy' event of the components that I am using as tabs, and that works, but I need to do this from…
zam6ak
  • 7,229
  • 11
  • 46
  • 84
0
votes
1 answer

How to add global loadmask to main controller for Sencha Tabpanel?

My tabpanel based app is nearly finished, but I'd like to improve it by adding a global loadmask that appears on each tap of my tabpanel, and disappears after the contents of the particular tab has been rendered. I am a little unclear though what I…
Digeridoopoo
  • 423
  • 1
  • 5
  • 17
0
votes
1 answer

Ajax Control Toolkit - Use client-side button to activate tab

I'm using the TabContainer/TabPanel components of the Ajax Control Toolkit. I'd like to hide the tabs themselves and use a button elsewhere on the page to activate (bring to the front) one of the tabs without posting back to the server. I can…
Frank Schmitt
  • 25,648
  • 10
  • 58
  • 70
0
votes
1 answer

separated validation of inputs in jsf

I have a rich:tabpanel and several tabs. The tabpanel's type is set to 'client'. In each tab, there are some h:inputText. What i wanna do is to show error like "Tab: Tab1[,Tab2[,Tab3...]] have error(s), please correct the error(s) before save." if…
user415726
  • 159
  • 1
  • 4
  • 14
0
votes
1 answer

AjaxToolkit: TabContainer on the page is focused on postback

I have almost the exact same question as at the following post (and I tried both of the answers, but neither works), except I'm not worried about whether the TabContainer is last on the page or not - I want to prevent the page from skipping up or…
pabrams
  • 1,157
  • 10
  • 34
0
votes
2 answers

GWT: Reloading a single tab in a tab panel

I have a GWT tab panel and would like to reload a single tab when a certain event (e.g. button click) happens in another tab. Is there a way to do that? Another possibility would be executing some code (e.g. adding a new element to a tab) when that…
april
  • 125
  • 7
0
votes
1 answer

Using RichFaces jquery to add another class to a tab

I have a rich:tabPanel with several tabs in it. I want to use jquery to record changes on each tab so that when a change is made within a tab I change the background image of the tab. It looks like this:
Chris Dale
  • 2,222
  • 2
  • 26
  • 39
0
votes
1 answer

Not able to implement actions on tabs in sencha tabpanel

I am trying to implement the actions on click on tabs in tabpanel using sencha. Somehow I am not able to get the alerts on clicking the tabs. Here is my code. I have tried to use handler and listener both the approaches on different tabs but I am…
Gendaful
  • 5,522
  • 11
  • 57
  • 76
0
votes
1 answer

GWT questions. How to implement this kind of Tab Panel or Docklayout Panel

I have a complicated GWT question. Wish someone can give me some tips. I want to create a panel that looks like in the following( content on the left, and some texts in the middle of the right side(tab), OR on the top of right side. (see the first…
Joey
  • 2,732
  • 11
  • 43
  • 63
0
votes
1 answer

How do I select a tab and set content of the tabpanel in JavaScript

I'm stuck at this: I've created tabs and corresponding tabpanels. By default, I've hidden the tabs. To make a tab visible, I use this JavaScript line: document.getElementById("tab-id").setAttribute("selected", true); However, the content of the…
okello
  • 601
  • 10
  • 27
0
votes
1 answer

struts2-jquery tabbedpanel using tabs with jqgrid

I'm trying to create a tabbed panel having a different jquery grid in each tab. The first tab loads as expected and shows the requested grid. But all other tabs refuse to show the grid but just render an empty
LordHelmchen
  • 149
  • 3
  • 12
0
votes
1 answer

Sencha Touch Carousel and TabPanel

I want to have a view with a TabPanel and inside a Carousel with two cards. Like this: var view = Ext.define("abril16.view.Main2", { extend: 'Ext.tab.Panel', requires: ['Ext.TitleBar', 'Ext.carousel.Carousel'], config: { tabBarPosition:…
user1259552
  • 141
  • 1
  • 1
  • 5
1 2 3
29
30