Questions tagged [tabs]

A brilliant design pattern for user interface enables the showcasing of numerous pages or elements with a navigation reference positioned above, below, or to the side of the content. With a simple click on the navigation reference, one element is brought into view while the rest seamlessly fade away. As an added bonus, the navigation reference can be distinguished by color-coding to signify its active state.

What could be causing the fourth tab to not show any data while the first three tabs are functioning as expected?

I've encountered an issue with my HTML tabs. While I can easily switch between the first three tabs and view their content, tab 4 doesn't seem to display its associated data. It's puzzling why tab 4 is not working when the others are functioning correctly. ...

Challenges when Implementing JQuery Tab Components

I am currently working on adding new tabs to my existing tab system created with jQuery. My approach involves assigning a class "extend" to the anchors that will create the new tabs and removing their default functionality. I then load the content into t ...

"Exploring How to Manually Change a Tab Page in

I created a tabs page that contains five different tabs. Typically, the user can navigate to these tabs by clicking on their respective tab icons. However, I want to implement a feature where the user can manually change tabs by clicking on a button loca ...

Utilizing React refs for interactive tab panels

Currently, I am utilizing React along with material-ui and material-table in my project. One issue I am facing is with a closable tab panel where the corresponding panel components are not unmounted when tabs are switched. Instead, they are just hidden wi ...

The placement of a material-ui component at the beginning of the render method can impact the styling of the following components in the hierarchy

After creating some styled components, I noticed that they were not rendering correctly for me. However, when I transferred the code to a codesandbox environment (which had a material-ui button in the template), the components rendered perfectly fine. It w ...

Using Angular ui.bootstrap tabs along with ui.router: a step-by-step guide

My initial approach to using ui.bootstrap tabs with ui.router is as follows: <tabset> <tab heading="Tab1" select="$state.go('home.tab1')"> <div ui-view="forTab1"></div> </tab> <tab heading="Tab2" select="$state.g ...

Steps for Embedding an HTML Page into a Tab using jQuery

Within the tab labeled class=plots-tabs-heatmap, I am attempting to insert a new page using the code below. However, instead of seeing tmpdata/page2.html displayed on the tab, nothing appears. $('#plots-tabs-heatmap').html("tmpdata/page2.html"); ...

Every time I switch tabs in Material UI, React rebuilds my component

I integrated a Material UI Tabs component into my application, following a similar approach to the one showcased in their Simple Tabs demo. However, I have noticed that the components within each tab — specifically those defined in the render method ...

What is the trick to incorporating nested tabs within tabs?

My tabs are functional and working smoothly. To view the jsfiddle, click here - http://jsfiddle.net/K3WVG/ I am looking for a way to add nested tabs within the existing tabs. I would prefer a CSS/HTML solution, but a JavaScript/jQuery method is also acce ...

Creating a ripple effect on Tab items in Flutter

Hey there! I recently set up a Flutter TabBar with tabs and was wondering if there is a way to incorporate a button-like ripple effect when the user clicks on the tab buttons. Any suggestions or tips would be greatly appreciated! TabBar( isScro ...

Implementing popup alert for multiple tabs when Javascript session times out

I have implemented javascript setInterval() to monitor user idle time and display a popup alert prior to automatic logout. However, it seems to be functioning correctly only in single tabs. Here is the code snippet: localStorage.removeItem("idleTimeValue ...

Troubleshooting the failure of implementing react hooks useState within a material-ui Tab container

Recently, I have been experimenting with implementing react-hooks useState in material-ui/tabs component. While I have been successful in using the handleChange function, I am eager to explore and master the use of hooks in this scenario. Interestingly, my ...

Ensuring Tab Input Validation in ReactJs with the Help of Form Validator

After browsing through some Q&A, I stumbled upon a thread on the topic of Tabbed form and validation. Although it was close to addressing my issue, it did not provide a solution. I am currently utilizing react-material-ui-form-validator. When multiple ...

Upon pressing a link that opens a new tab, he notices that the buttons and fields are not visible

Here is my issue: When I click on a link that opens in a new tab, switch to the new tab, and try to click on a field to enter text, I encounter the following error message: org.openqa.selenium.NoSuchElementException: no such element: Unable to locate eleme ...

When displayed in a dialog, the active tab in AngularJS Bootstrap tabs does not appear properly

When I open my dialog box, I have multiple tabs displayed. When I choose tab_2 to be active, the content does not appear, which is quite unusual. <div class="portlet-body"> <div class="tabbable-blue" id="my_tabDialog& ...

Content in Material UI vertical tabs is obscured by the tab content

I'm having an issue with a vertical tab implemented in Material UI within a React project. The content of one tab is a long string, causing it to overlay the menu on the left side. Can anyone explain why this is happening? The expected behavior is fo ...

Tips for adjusting the font weight and size of the label within a Quasar Tab

I've been working on my project using Q-Tab, and I've been trying to adjust the font size and weight of the tab labels without success. I've experimented with the typography options in Quasar, but nothing seems to work. <q-tabs v-model="tab" ...

I'm looking to personalize the appearance of a selected tab in Material-UI using the tab component. How can I achieve this?

I am currently working on incorporating the Material-ui Tab component into my React application. You can find more information about the Tab component here: https://material-ui.com/api/tabs/. Here is how I have set up my Tab bar: <AppBar position="st ...

Is it possible to create a responsive Material UI tab design?

How can I make the Material UI tab react component responsive? Check out the documentation for MATERIAL UI TAB here If I have multiple tab items with a search bar like shown below, how can I ensure that the input component stretches the whole width of th ...

Adding a class to a different UL tab from the tab div in jQuery tabs - a guide

Looking to implement a tabs navigation using jQuery without the jQuery Tabs UI. Essentially, when a user clicks on a list item, the script selects the list element with data-tab="X" and adds the class current, making the link visible (default op ...

Trouble navigating to the 'current active tab' in Chrome with WebDriver using Java

I am facing difficulty switching to the 'current active tab' in Chrome using WebDriver. Despite trying multiple approaches, I have been unsuccessful so far. Navigating to a different tab is possible, but determining which one is the current act ...

Arrow icon from Material UI for a smaller device

As I work on coding a tab bar, I have encountered an issue where the indicator arrow button () is not displaying when the width of the tab bar goes below 600px. I would like it to appear like this: https://i.stack.imgur.com/PDum9.png However, currently i ...

Tips for launching a new tab within the current browsing session

Looking for a way to open a new tab in the same session? I have attempted the usual solutions provided by others with no success. I am specifically working with the Chrome browser for this task. My project is coded in Java. ...

How to personalize the width and positioning of Material UI Tab's indicator

Currently, I am utilizing Material UI's tabs and have successfully modified the Tab's indicator. However, my goal is to set a fixed width for the indicator on each tab using styles. Despite trying to adjust the width, the indicator remains left-aligned wit ...

Creating a unique scroll icon for your Material-UI scrolling Tabs

Currently, I am utilizing the Scrollable tabs feature from Material-UI. How can I go about changing the icon of the scroll arrows in SVG format? I came across the TabScrollButton component that is available for use. Would I need to create separate ones fo ...

Unselect a tab in Bootstrap 3 with AngularJS

My project involves working with angular js and bootstrap 3, where I have a view with multiple links to display a div with tabs. The issue arises when I change the tab by clicking on it, then hide the view, and upon showing it again, the previously selecte ...

Creating UL tabs using just HTML and CSSHere's a step-by-step guide

Looking for help to accomplish this task. I already have the styling, but I want something to happen when I click on the tabs. Specifically, I want the div with the tab class names to show and hide upon clicking the tabs. Currently, nothing happens when I ...

Issue with loading a link within a tab on jQuery UI Tabs

I'm encountering an issue with jQuery UI tabs. Specifically, I have tabs that are loaded using ajax and my problem is that I want to load page links within the page but am struggling to do so. Below is the code of my page with the tabs: <script&g ...

The React Material-UI Tab component threw an error message saying "Looking for an element type capable of holding a reference."

Currently, I am working on implementing React MUI Tabs into my project and encountering the following issue: Warning: Failed prop type: Invalid prop component supplied to ForwardRef(ButtonBase). Expected an element type that can hold a ref. Did you accid ...

Adjust the background color of the active tab in Material-UI using React

Is there a way to customize the background color of the active tab in material-ui Tabs component? I already know how to change the underline with inkBarStyle={{background: 'red'}}, but I'm struggling to change the background color. Any help would be grea ...

Having trouble getting custom tabs in jQuery to function properly?

I am facing an issue with a simple script I have created. The script is supposed to display a specific div when a user clicks on a link, and hide all other divs in the container. However, when I click on the link, nothing gets hidden as expected. Even afte ...

The functionality of Angular bootstrap tabs is incompatible with ui-iconpicker

Trying to integrate Angular UI Bootstrap Iconpicker into my project has been a struggle. It seems there is conflict with the js files being used for AngularJS tabs: <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-animate.js"> ...

Fixing My Code with JQuery Tabs and Hyperlinking

I have come across a problem while using multiple pages with jQuery tabs. Let's consider Page1.html with #tab1 and #tab2, and Page2.html with #tab3 and #tab4. Here are the issues I am facing: 1) Within the tab content of Page1.html#tab2, there is a hyperl ...

Customizing a material-ui theme with withStyles() in conjunction with withTheme()

After developing a series of reusable components, I started styling them by utilizing classes prop to override the MUI classnames. To streamline the process and prevent repetition in more intricate components, I consolidated common styles into a theme. Eac ...

Beware of the 'grid zero width' alert that may appear when utilizing ag-Grid's sizeColumnsToFit() function on multiple ag-Grids that are shown within a tab menu

Encountering a warning message when resizing ag-Grid and switching between tabs. The warning reads: ag-Grid: tried to call sizeColumnsToFit() but the grid is coming back with zero width, maybe the grid is not visible yet on the screen? A demo of this ...

The Zurb Foundation grid system is causing issues when trying to implement vertical tabs

My vertical tabs are giving me trouble when I try to nest grid or block elements, causing everything to overflow outside the element. For example, in the image below, the numbers 1,2,3 should be in the right section. <div class="row"> <div class ...

Programming the tab pages within Chrome

By using JavaScript, I successfully opened a new tab at www.blogger.com from the Main.html page. <script> window.open("https://www.blogger.com"); </script> I am now on the blogger page. My goal is to automatically scroll to the end of the bl ...

Having Trouble with React, TypeScript, and MUI Tabs? Dealing with Overload Errors?

Currently, I'm in the process of building a component using MUI Tabs. Here's a snippet of my code: <Box> <Tabs value={value} onChange={handleChange} variant='fullWidth'> {RoomTabs.map((tab, index) => ( ...

Filtering data in VueJs using Vuetify's v-tabs feature

I am currently utilizing NuxtJs, a lightweight version of the VueJS framework. My goal is to implement a data filtering functionality based on tab clicks. The objective is to display the data in alphabetical order and filter them accordingly when tabs are ...

Utilizing ng-repeat in a tabset to create an interactive and customizable tab interface

I am using angular ui tab (angular-ui.github.io/bootstrap/) and I expected that with ng-repeat, I would be able to make it dynamic, meaning the user can add tabs. However, unexpectedly it duplicates the tabs. Here is a demo: http://plnkr.co/edit/iHi1aOfbz ...

Displaying and updating Google Maps within a tab using AngularJS

After spending hours trying to find a solution (even after reading countless pages), I am still struggling with an issue. I have a Bootstrap tabs system on a page, and on the third tab, there is a Google Maps div. Because the tab is not visible initially, ...

Simple Mobile-Friendly Tabs - mobile tabs are always visible

My JavaScript skills are not the best. I have been using Easy Responsive tabs and encountered an issue on the mobile version where clicking does not hide content, but only removes the "d_active" class and adds it to another element. I believe that if the ...

Setting the tab width in the Material UI App Bar

Exploring Material UI has been an exciting journey for me as a newcomer! However, I am facing a challenge in adjusting the width of each tab panel/label to ensure all three labels are visible at once. Currently, the last label, Upload, is extending beyond ...

Activate Bootstrap tab form with the ability to include sub tabs for added functionality

I have been working on a method to open Bootstrap 3 tabs on my pages based on the URL. For example, if the URL is myurl.com#tab1 (it will open the tab with id #tab1). Here's the code I am using: $(function () { var hash = window.location.hash; ...

Launch a new tab within the parent window, passing on variables from the parent window

Currently, I have a button that opens a new window in a new tab by using window.open("newpage.html"). In the child window, I use childVar = window.opener.parentGlobalVar to access global variables from the parent window. Now, I have been requested to open ...

What steps can I take to avoid page displacement when implementing jQuery ajax tabs?

There are numerous inquiries regarding this issue, and it appears that some are very similar to what I am looking for, such as: JQuery UI Tabs Causing Screen to "Jump" Stop jquery TABS from jumping / scrolling up when clicked on? Jquery tabs: How do I ...

When the tab is switched, the URL remains the same. However, if the URL is changed,

The tabs are changing content but the URL is not being updated. Please refer to this link for a clearer explanation of my issue: https://codesandbox.io/s/mui-tabs-58y4gk Whenever I click on a tab, the URL should change accordingly (for example, clicking ...

Restricting access to tabPanel in tabView when a tab is clicked using Angular

In my tabview, I have multiple tabpanels and I am able to programmatically control it using the [activeIndex] property. However, I am facing an issue where I want to display an alert and deny access to a specific tab if a certain variable is set to false. ...

AngularJS Material Design Tabs with See-Through Style

Is there a way to make the md-tabs of angularJs Material have transparent background for the tab names (headers)? I've tried different methods but none have worked so far. I'm under the impression that this should be the default behavior, but fo ...

What could be causing the unpredictable behavior of my Material UI Tabs component, where it seems to be overriding other

I am facing an issue with the styling of tabs in my React app dashboard that uses Material UI Tabs. Specifically, I have a tab in the dashboard that opens a modal for adding new users to the system. The modal itself also contains tabs, but no matter how I ...

When you click on the logo, it will automatically redirect you to a designated Bootstrap Tab and set that tab

After searching through numerous posts, I am still struggling to find a solution to my straightforward issue. My requirement is simple: when a user clicks on the brand (logo), it should not only redirect them to a specific tab but also make it appear as a ...

Display the same DIV element across various HTML tabs

When two different tabs are clicked, I need to display a set of 10 Search Fields. Both tabs have the same fields, so instead of using separate DIVs, I want to use the same DIV and only change the AJAX REST End-Point based on the selected TAB. Can someone ...

Guide on navigating to a different TAB using selenium webdriver and python

import unittest from selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.chrome.options import Options from selenium.webdriver.common.action_chains import ActionChains from selenium.webdriver.common.by import B ...

Issue with Material-UI tab not showing the component upon page load

After setting up material-ui tabs with react-router, I encountered an issue where only the tab names Tab A and Tab B are displayed upon page render. The desired behavior is for the TabAReport component to be automatically rendered without requiring user in ...

Prioritizing Tabs in Selenium Web Scraping: Which Tab Takes Precedence?

Task at hand: capturing the URLs/titles from Code snippet for testing purposes (fetching 3 pages and printing, not saving): from selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.support.ui import WebDriverW ...

Steps for accessing a particular tab on a separate webpage

I am working on a home page that includes an IFrame displaying a separate HTML page. Within the embedded page, there is a link that, when clicked, should open another page in the same IFrame with a specified tab displayed. This new page contains 3 tabs, ...

Seeking assistance in creating custom tabs for integration with a jQuery tabs plugin

Attempting to navigate the world of CSS as a newbie, I find myself struggling with creating tabs. Our current tab setup can be viewed here, but unfortunately, these tabs are created using an unattractive <table> tag. Below is the code responsible fo ...

Step-by-step guide: Creating a captivating triangular shape on the current tab

I am trying to implement a dynamic tab using Bootstrap where clicking on a tab will display a thicker black underline, like in this image: https://i.stack.imgur.com/h48GB.png To achieve the black line effect, I have added the following code: .nav-tabs.n ...

Issues with script execution on Ajax tab

I'm currently using JQuery UI tabs to load content through Ajax. I have a situation where two tabs are supposed to load HTML content and execute a script to hide or show certain elements in the loaded content. However, I encountered an issue where the ...

Automatically activate the next tab in Bootstrap

I have a modal that performs a count. Once the count is completed, the modal closes. My goal is to automatically switch to the next tab in Bootstrap when the modal closes. Here is the HTML: <ul class="nav nav-tabs namelocationtable"> <div clas ...

Click on the next tab within the ExtJS tab menu

I am looking to deactivate a tab and if it happens to be active, I want the system to automatically switch to the next tab. I attempted myPanel.tab.disable(); if(myPanel.tab.active) myPanel.NextSibling().tab.setActive(); and myPanel.tab.disable(); ...

angular-ui-tab-scroll: Odd spacing between blocks and tabs, each separated individually

Greetings! I would like to express my gratitude for this wonderful library! However, I am encountering an unusual issue when trying to wrap a tabset with tabs that are included separately. This can be done either by adding individual tab elements manually ...

Having trouble with the installation of the package "react-native-tab-view-collapsible-header"?

When attempting to execute the command in my terminal (pointed to the correct directory): "npm i react-native-tab-view-collapsible-header" I encounter errors that say: npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! np ...

What could be the reason for the inconsistent behavior of onClick, causing it to occasionally fail to display the associated

I just started using typescript 2 days ago, mainly to create a custom component for my streamlit app. I've made a navigation bar with a tab that can be clicked on the sidebar, but it's displaying some erratic behavior. Sometimes when I click on t ...

using Javascript to eliminate necessary tags from concealed tabs

My goal is to dynamically remove the required tag from fields in hidden tabs when a tab is clicked using JavaScript. The presence of the required tag on unused fields causes issues with form submission, preventing data insertion into the database. Here's ...

Encountering issues with browser tabs and Socket.IO

I'm currently working on a real-time chat using Socket.IO, but I've encountered a major issue. The aim is to allow users to log in, select another connected user, and start chatting... var http = require('http'), fs = require(&ap ...

How do I incorporate scrolling into Material-UI Tabs?

I am currently incorporating Material-ui Tablist into my AppBar component. However, I am facing an issue with the responsiveness of the tabs. When there are too many tabs, some of them become hidden on smaller screens. For more information on the componen ...

Is there a built-in event in Jquery UI tabs for when the tabs are collapsed?

Which event in jquery ui can I utilize to detect when a panel collapse has finished on the browser? I require this information to perform calculations based on the screen layout after the collapse has occurred. If I use the select or show event callbacks, ...

Alter the icon of the scroll button on the Material UI Tabs element

How can I change the icons for the scroll buttons (left and right) on my Tabs component? I see that there is a prop called 'ScrollButtonComponent', but I am unsure how to use it to assign different icons to the left and right buttons. Here is a screensho ...

What is the best way to create direct links to tabs using #anchors in JavaScript?

I am managing a website that includes info-tabs based on a template I found at this link. The tabs contain anchors like example.com/#convey, but unfortunately, direct links to specific tabs using #anchor do not work properly due to the tabs relying on Java ...

Encountering an error with Nested MaterialUI Tabs while attempting to open the second level of tabs

I am attempting to create nested horizontal tabs using MaterialUI. This means having a first level of tabs that, when clicked on, opens a second level of tabs. Here is a link to a working example of the code: https://codesandbox.io/s/sweet-pasteur-x4m8z?f ...

Interactive MUI React Tab Components

Currently, I am working with MUI tabs and have added an X button to them. However, I am facing difficulties in making the tabs closeable. I would greatly appreciate any help or guidance on how to achieve this feature. Despite trying different methods, I ha ...

Linking to a Different Tab without Tab Mutation with Bootstrap 3.3.5

I am facing a similar issue to the mentioned questions. I am trying to use a link to change tabs, but the problem is that the link only changes the tab content and not the active tab. The most similar question can be found at: Bootstrap linking to a tab w ...

Preserve the selected Material UI Tab in ReactJS even after refreshing the page

Hey there, I've been using React Material UI Tab and ran into an issue where the tab selection is lost on page refresh. Does anyone know how to fix this problem? This pertains to a code snippet for the material ui tab component. class SimpleTabs exte ...

What is the best way to design custom Tabs with multiple labels within each tab using material UI?

I am utilizing material UI with the material-ui/Tabs component. Here is a code snippet... import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from 'material-ui/styles'; import AppBar from &apo ...