14,736 questions
2941
votes
32
answers
4.0m
views
Open a URL in a new tab (and not a new window)
I'm trying to open a URL in a new tab, as opposed to a popup window.
I've seen related questions where the responses would look something like:
window.open(url,'_blank');
window.open(url);
But none ...
0
votes
1
answer
63
views
Primefaces: ContextMenu on Tab in TabMenu
I have a Primefaces Tabview with multiple tabs, and I'd like to add a context menu specifically to its tabs (each tab would have its own), but NOT to the whole tabview.
Online I had found this:
<h:...
1345
votes
4
answers
1.8m
views
Open link in new tab or window [duplicate]
Is it possible to open an a href link in a new tab instead of the same tab?
<a href="http://your_url_here.html">Link</a>
2
votes
1
answer
297
views
Nested tabs in Quarto document
I would like to create nested tabs in a Quarto document. I wrote a custom function called nested_tabs which takes the names of a nested list for the tab names and should plot the graphs at each ...
0
votes
2
answers
329
views
Using Python, how to continue opening new URLs in a specific Edge window even if another Edge window is in the foreground?
Using this default model, if I separate one of these URLs in a new window and use it for reading, the next URL open will open in the window I've separated for reading, obviously hindering my reading.
...
386
votes
26
answers
331k
views
Twitter Bootstrap Tabs: Go to Specific Tab on Page Reload or Hyperlink
I'm developing a web page in which I'm using Twitter's Bootstrap Framework and their Bootstrap Tabs JS. It works great except for a few minor issues, one of which is I do not know how go directly to ...
288
votes
13
answers
423k
views
Visual Studio Code - Convert spaces to tabs
I have both TypeScript and HTML files in my project, in both files tabs are converted to spaces.
I want to turn the auto-conversion off and make sure that my project has only tabs.
Edit:
With this ...
1
vote
1
answer
230
views
DPI awareness in Winforms app with TabControl and DataGridView - layout messes up when the window is moved between screens
I have a C# Winforms application which I am trying to make DPI aware. I have tried to follow the instructions here:
https://learn.microsoft.com/en-gb/dotnet/desktop/winforms/high-dpi-support-in-...
245
votes
13
answers
111k
views
Tab not taking full width on Tablet device [Using android.support.design.widget.TabLayout]
I have setup tabs as UPDATE 29/05/2015 this post. Tabs take full width on my Nexus 4 mobile but on nexus 7 tablet it in center and not cover full screen width.
Nexus 7 screenshot
Nexus 4 screenshot
227
votes
20
answers
1.6m
views
How to insert spaces/tabs in text using HTML/CSS
Possible ways:
<pre> ... </pre>
or
style="white-space:pre"
Anything else?
229
votes
11
answers
220k
views
Sublime Text 3, convert spaces to tabs
I know there are a lot of posts about this, but I couldn´t get it to work.
I use tabs for coding. Is there a way, to convert always spaces to tabs? I.e. on open and on Save files? Anyone got an idea?
...
347
votes
8
answers
529k
views
How do I change tab size in Vim?
Every time I add a selector in CSS and I press Enter to define the properties it ends up like this:
#selector {
property: value;
}
(8-space tabs)
How can I configure Vim to make it like this:
...
0
votes
0
answers
61
views
Is it possible to open multiple tabs in a single window of ConEmu?
I thought that ConEmu would allow me to have multiple tabs with only one window open. I navigate to Settings... > General > Appearance and enable both the Single instance mode option and the ...
141
votes
19
answers
253k
views
How can I keep selected Bootstrap tab on page refresh?
I am trying to keep selected tab active on refresh with Bootstrap 3. Tried and checked with some question already been asked here but none of work for me. Don't know where I am wrong. Here is my code
...
224
votes
6
answers
107k
views
disable the swipe gesture that opens the navigation drawer in android
I've been following the navigation drawer guide by Google and I'd like to add it to an Activity with tabs and gestures.
I'd like to disable the gesture to open the navigation drawer, does anyone have ...
-1
votes
1
answer
143
views
How to add tab icon in react application
i have a react application where i need to display png image as shown below
HTML is as below
8x8 Integration
my folder structure is as shown below
but none of the images are coming in the img tab in ...
79
votes
7
answers
51k
views
VSCode insert tab character manually
When using VSCode, most of my files are set to be indented using spaces. However I sometimes wish to insert a literal tab. When I was using vim I'd use <Ctrl>+v <Tab> but that doesn't work ...
0
votes
2
answers
137
views
user logout when browser tab is closed
I need help. "How can I log out a user in Angular when they close the browser tab instead of clicking the logout button, so that the next time they try to access the application, they have to log ...
100
votes
10
answers
175k
views
How can I align text in columns using Console.WriteLine?
I have a sort of column display, but the end two column's seem to not be aligning correctly. This is the code I have at the moment:
Console.WriteLine("Customer name "
+ "sales ...
0
votes
0
answers
34
views
React-Native - why is the Toolbar imagebackground cutting off the tab button highlight?
I am trying to make a simple app tabbar where the selected tab is highlighted with a pill highlight image. The image works but as you can see in the image the bottom of the pill is cutoff.
import { ...
0
votes
0
answers
22
views
SwiftUI - Create a “More Options” Sheet Like in Microsoft Teams That Appears Above TabView [duplicate]
I’m trying to replicate the behavior of the “More options” sheet in the Microsoft Teams mobile app using SwiftUI.
The actual "More" tab doesn't switch the selected tab — instead, it just ...
94
votes
7
answers
52k
views
Make all opened document tabs visible
I would like to see all files or documents I've opened in Visual Studio. I do not want them to be auto hidden or hidden on overflow.
How can I achieve it?
0
votes
1
answer
72
views
Property tabPanel is not provided by any applicable directives nor by <mat-tab> element? [closed]
so i have an angular Projet but it doesn't work because of TabPanel problem . Help me Please
codes :
<div class="page-container">
<header>
<h1>Test Page</h1&...
44
votes
9
answers
15k
views
Visual Studio Code - Can "OPEN EDITORS" panel be sorted?
Sometimes when I'm working I end up with several open tabs. My problem is that every time I need to switch to another file I need to constantly scroll until I find the desired file (which is not ...
0
votes
1
answer
339
views
How to keep navigation state isolated per tab in Expo Router?
I’m building a React Native app using Expo Router with a tab-based layout (for example: Feed, Search, Home).
What I want is for each tab to have its own independent stack/history, so that when you ...