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
50
votes
2 answers

R Shiny - add tabPanel to tabsetPanel dynamically (with the use of renderUI)

I am developing a shiny application in which I use tabsetPanel, which is generated when user enters some particular input. Thus, I want to use renderUI function to make a tabsetPanel appear / disappear. My struggle now is that number of tabPanel…
Marta Karas
  • 4,967
  • 10
  • 47
  • 77
31
votes
1 answer

JavaFX TabPane - One controller for each tab

I'm new to Fx. I have a TabPanel with 10 Tabs. Each Tab has many controls (charts, buttons, etc.), and what I want is to assign a controller for each Tab. The SceneBuilder only let me assign a controller for the whole view, I mean, only the top…
roneypc
  • 315
  • 1
  • 3
  • 6
11
votes
4 answers

Dock Panel component for .NET that allows docking inside tab-pages?

I want to build a user-interface that, for historical reasons, has a lot of "columns" of information. Many of these aren't relevant for all users in all cases, so I thought I'd look at dock panels to allow the users to hide or rearrange the columns…
Lasse V. Karlsen
  • 380,855
  • 102
  • 628
  • 825
11
votes
3 answers

GWT Datagrid does not show data , but contains it

I'm trying to convert a cellTable into adatagrid, because I want to add a search handler later and therefor I need fixed column headers. At the moment I extend the celltable/datagrid class and put the widget into a simplelayoutpanel and add this to…
Akkusativobjekt
  • 2,005
  • 1
  • 21
  • 26
10
votes
2 answers

JavaFX - closing a Tab in TabPane dynamically

I have a TabPane with closable tabs. I want to fire a "close tab event" when the user clicks a button in the content of the tab. Here is the method called when the user clicks the button: public class CustomTab extends Tab { ... protected…
Ramazan
  • 989
  • 3
  • 14
  • 26
9
votes
1 answer

shiny: dynamically change tab names

I'm working on a Shiny application that is supposed to handle multiple languages. I managed to dynamically translate almost all elements of the app depending on a selectInput to choose the language. However the "hard stuff" remains the navbarPage…
agenis
  • 8,069
  • 5
  • 53
  • 102
9
votes
1 answer

shiny dashboard mainpanel height issue

This is an extension of my previous question. Now I am not able to extend the height of my main panel. This is my code below library(shiny) library(shinydashboard) library(shinyBS) library(DT) ui <- dashboardPage( dashboardHeader(), …
Sundown Brownbear
  • 491
  • 1
  • 5
  • 15
9
votes
7 answers

JavaFX 2.0 TabPane : Tabs at left and keep tab header horizontal

I'm trying to develop a GUI for a web application and I wanted to set a TabPane with tabs placed at left keeping the tab headers horizontal. I already found how to place the tabs at left, but after many searches I didn't succeed to set the headers…
Baya
  • 247
  • 1
  • 5
  • 11
8
votes
2 answers

WPF Styles for TabControl / TabPanel / TabItem

Here's a newbie question on the WPF TabControl, TabItem and TabPanel. There is a related question on StackOVF with an answer I happily used in my app. Here's a link to the answer, and the code snippet as well: WPF: Center TabItems in a…
Jeroen
  • 60,696
  • 40
  • 206
  • 339
7
votes
1 answer

Sencha Touch TabBar add button on the left side of tabs

I was working through some sencha touch tutorials and i can't figure out how to add a button to the left of tabs in TabPanel view. By default a button is added to the right of tabs. I have tried changing align and layout settings but nothing seems…
MrGreen
  • 133
  • 1
  • 6
6
votes
2 answers

How can I update the content of a tab in an ExtJS TabPanel?

I have a tab panel like this: var tab1 = { id: 'section1', title: 'First Section', padding: 10, html: '(this content will be replaced with an ajax load)' } var tab2 = { id: 'section2', title: 'Second Section', padding:…
Edward Tanguay
  • 189,012
  • 314
  • 712
  • 1,047
6
votes
1 answer

How to disable a tabPanel in shinydashboard?

Is there a way to disable a tabPanel until an actionButton is clicked? I tried to do this using shinyjs but that did not work. Currently my ui.R has the following code. I want to disable 'Filter' tabPanel until loadButton is clicked. ` body <-…
Sri Paladugu
  • 131
  • 6
6
votes
2 answers

In the tabpanel of ExtJS 4, how to catch the tabchange event anytime I click a tab?

For each tab in the tabpanel, I have one floating panel located in a fixed spot. When I switch the tabs, I need to bring the corresponding floating panel to the front. However, the tabchange event is fired only the first time. How can I catch this…
skywang
  • 75
  • 1
  • 2
  • 6
5
votes
4 answers

ExtJS 3.2.0, hide tabpanel's header

PLs tell me how i can hide header of tabpanel "..." if my tabpanel have only one tab? I can't use Ext.Panel becose I use fairly sophisticated methods for generating extjs code on the server, and there is a large number of design errors that do not…
TheHorse
  • 2,787
  • 1
  • 23
  • 32
5
votes
1 answer

R Shiny: How to hide tabPanel by a condition in server

I modified an answer given in here to write a very simple login/logout system using the Shiny package in R. I would like to hide panel "B" if USER$Logged is FALSE (i.e. user is logged out) and show it whenever USER$Logged is TRUE (i.e. user is…
1
2 3
29 30