Questions tagged [tabs]

A user interface pattern that allows for the display of multiple pages or elements with a navigation reference above, below, or to the side of the content. On clicking the navigation reference, one element is made visible while others are toggled off. Often, the navigation reference is color-coded in a manner to indicate that it is currently visible.

A user interface pattern that allows for the display of multiple pages or elements with a navigation reference above, below, or to the side of the content. On clicking the navigation reference, one element is made visible while others are toggled off. Often, the navigation reference is color-coded in a manner to indicate that it is currently visible.

This can also refers to the character tab.
See this GitHub study about tab versus space.

14311 questions
3
votes
1 answer

Client-area of Tab control?

How to get the "inside" of a tab control, i.e. the area in which you can place controls? // doesn't work: WINDOWINFO tabsInfo; GetWindowInfo(GetDlgItem(hwndDialog, IDC_TABS), &tabsInfo); MoveWindow(someHwnd, tabsInfo.rcClient.left,…
OJW
  • 4,514
  • 6
  • 40
  • 48
3
votes
1 answer

Vue-form-wizard: Make the tab index dynamic by the route

I want to navigate in the tabs by the url. Tab-content prop route: I can set an anchor that is shown in the url. Form-wizard prop start-index: I can navigate to the right tab. How can I make the start-index prop dynamically what route which index…
EnzoTrompeneers
  • 1,031
  • 1
  • 14
  • 30
3
votes
1 answer

Targeting One Tab Set in Multiple Tab Sets

I have some JQuery that controls the open and close of tabs. It works great - until I have multiple sets of tabs. On click functionality impacts all the sets of tabs. I want to be able to isolate the functionality to the set of tabs that are being…
Dan Lee
  • 684
  • 4
  • 15
  • 35
3
votes
3 answers

iOS- How to Hide/Show UITabBarController's tab bar with animation?

I have a question about iOS's UITabBarController's tab bar. I'm using a UITabBarController to display a few views, but as I want the views to be displayed with as large a screen as possible. Is it possible to hide the tab bar so that it normally…
JusmanX
  • 751
  • 1
  • 7
  • 5
3
votes
2 answers

How to open multiple IE tabs in C# when no IE window is opened?

I need to open multiple IE tabs in C# (windows application). Below is my code: string[] pcList = txtInput.Text.Trim().Split(','); foreach (string pc in pcList) { if (pc.Trim() != "") { …
mabellez
  • 41
  • 2
  • 5
3
votes
6 answers

JQuery Simple Tab Navigation

I want a simple navigation without using any plugin but simple JQuery. Link 1 Div 1,Div 2,Div 3,Div 4 Link 2 Link 3 Link 4 When user clicks Link 1 show Div 1 and hide all other divs. Link 2 then show Div2 and hide all others. I want to do…
Pit Digger
  • 9,618
  • 23
  • 78
  • 122
3
votes
1 answer

Different states for Woocommerce product tabs

I recently got tasked with maintaining an old WP site and are having some trouble figuring out how to set the state on a duplicate element. The site uses WooCommerce plugin and in it there are templates which are overridden. One of the templates is…
kalle1
  • 43
  • 1
  • 5
3
votes
3 answers

Angular 7 detect browser tab became active

In our application, we have to get the user context from our backend service. If user context changes, application needs to reload. Since user could change their context in a different tab. We ping our backend service every 5 sec to check if user…
Akanksha Gaur
  • 2,636
  • 3
  • 26
  • 50
3
votes
1 answer

createMaterialTopTabNavigator not rendring properly in one screen in react native

I am implementing createMaterialTopTabNavigator in one screen but nothing is rendering in my app. i am returning MainNavigator which is app container of this screen. am i making mistake to use to app containers or not ? if it is mistake then please…
Muhammad Ashfaq
  • 2,359
  • 5
  • 20
  • 46
3
votes
1 answer

Is it possible to create split editors inside individual tabs in VS Code?

I'm wondering if it is possible to split a tab up in VS Code in the same way it works in VS 2017. In essence I only want to see the split for the file that is in focus. In VS Code when I have two files open with the first split then view the second…
3
votes
0 answers

Flutter/Dart: How to make tabs only render once?

I currently have three tabs navigated with bottom nav bar, however I have just noticed that it actually re-renders every tab change. How can I fix this so it only renders once, and uses that render until manual refresh (which will be implemented…
Jesse
  • 2,690
  • 9
  • 15
  • 28
3
votes
1 answer

Android Tabs in XML

My question is simple. Is it possible to create tabs entirely in xml? My app has only one activity. I want to have 2 tabs that show the same data but in slightly different layouts. It seems like it should be but I cannot find anything on…
codeHammer
  • 83
  • 1
  • 1
  • 7
3
votes
1 answer

How to get spaces instead of tabs in eclipse

After doing a little research, I found out that eclipse hides its settings in multiple levels. So, I think, I got all the levels covered here. Here I have set eclipse to insert spaces instead of tabs. And eclipse even acknowledges there that I have…
Duck Dodgers
  • 3,409
  • 8
  • 29
  • 43
3
votes
2 answers

Angular reactive form inside angular material tab gives error

When putting an Angular reactive form inside the Angular material tab, it gives an error. Is this a limitation of angular material tabs? Can you not have a form inside the tab? Is this something to do with the way the form loads, that the form is…
3
votes
3 answers

Open new web page in new tab in WebBrowser control

I'm using WebBrowser control in my c# application, and I want to open web pages in it. It's completely done. My problem: Any link in the web page that its target is _blank will open in new IE Window. I'd like to open such link in new tab in my…
user421125
1 2 3
99
100