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

Show Tab Form Validation For Inputs Not Direct Children Of

When an unfocused tab has a validation error, the tab header should appear red. Instead of that, when an unfocused tab has a validation error, the tab header does not give any indication of the error. This issue happens when I'm using subcomponents.…
helenatxu
  • 128
  • 2
  • 10
3
votes
3 answers

deleting tabs one space at a time

How do I configure vim so that I can delete a tab one space at a time rather than the entire tab? I often want to do this when I'm trying to align multiple tests for an if statement. In the below example, condition3 is aligned as I want and…
DannyTree
  • 1,137
  • 2
  • 12
  • 16
3
votes
5 answers

How can I remove the space between tab widget?

I would like to remove the spacing between tabwidgets. By default there is around 1px spacings between tabs. I know some apps like foursquare or posterous are able to remove it. How is the code to do this would look like? I am using 2.3 API. Thank…
Joshua Partogi
  • 16,167
  • 14
  • 53
  • 75
3
votes
2 answers

ngb-tab Select tab after enabling it dynamically

I have 2 tabs. The last one is disabled on init. After clicking a custom button situated in the first tab, the last tab should enable and select it. But right now it enable the tab but it doesn't select. I tried just changing the style as it appears…
Francois
  • 33
  • 1
  • 5
3
votes
1 answer

Set appbar actions dynamically from child tab in flutter

First of all, I might have got it wrong on how to design to solve my problem, so feel free to come up with completely different ideas. I have a page in my app with tabs. These tabs inherit from a common class so they can have a similar interface to…
UglyBob
  • 247
  • 1
  • 14
3
votes
1 answer

iOS navigation bar with "tab like" functionality/buttons

What would be the best way to make these buttons? I have no problem with the right/left buttons, but this "tab" functionality is eluding me. I was thinking of adding custom buttons on viewDidLoad like: UIButton *profileBtn = [[UIButton alloc]…
Buchannon
  • 1,671
  • 16
  • 28
3
votes
0 answers

How to refresh local tab in a shiny dashboard

So I have a shiny platform with a sidebar, menuitems. GOAL Without refreshing the whole page, I want to be able to refresh on one specific tab. PROBLEM So far I found how to refresh the whole page, but I just need to refresh one tab. Tried this…
Mikael
  • 113
  • 1
  • 8
3
votes
1 answer

jQuery UI Tabs dynamically adding tabs and content not working

I can't get jQuery UI tabs to work when dynamically adding tabs and content.
    jQuery var count = 1; $('#addspan').click(function() { $('#wrap').append('testing'); …
    Pinkie
    • 10,126
    • 22
    • 78
    • 124
    3
    votes
    1 answer

    CSS builder for tabs

    I am looking for a tool to help me generate stylesheets for standard interfaces, like tabs. Something like the jQuery UI theme builder, but lighter. Thanks for your suggestions!
    Christophe
    • 27,383
    • 28
    • 97
    • 140
    3
    votes
    3 answers

    Axes toolbar is not shown when axes is re-parented

    In MATLAB R2019a (Update 2), when using the following code, the axes toolbar is not shown when selecting Tab2 or Tab3. classdef test < handle properties Ax end methods function self = test() f = figure; …
    Patrick Happel
    • 1,336
    • 8
    • 18
    3
    votes
    4 answers

    enable disable jquery tab

    I have a jquery tab container, in which there are two tabs. Now what I want is initially second tab will be disabled. On clicking a button on the first tab second tab will be enabled and open automatically.