Questions tagged [tabbed]
163 questions
1
vote
0 answers
Trying to add a jQuery image zoom (glassCase) to a jQuery tabbed panel but image is not sizing correctly until browser is resized
I think i am getting this issue because the Image zoom (glassCase) is placed on a tab that on load is not visible(has the display: none;). Therefore when is calculated the width of the component it gets the value of 0.
This means when i click the…

ochops
- 11
- 1
1
vote
1 answer
Controlling the style of individual spry tabbed panels in Dreamweaver CS4
Hi I'm using Dreamweaver CS4's spry tabbed panels. I want to modify just one tab panel's style so that all the tab's backgrounds will look different. I've tried looking through the "SpryTabbedPanels.css" properties but no luck, just one that…

MusicFighter
- 11
- 1
1
vote
2 answers
Populate the tabs and the form in each tab dynamically
I am extracting data from the server and from that data I need to create the number of tabs and populate the data in the form of each tab.
For e.g.:
If my data has two fields named 'x' and 'y' then I need to create two tabs (where the form panel,…

aayush_v20
- 193
- 1
- 9
- 22
1
vote
1 answer
Tabbed android application crashes when going to another tab (android -> java -> android studio)
I'm stating with the preview app from android development yet when going to another tab the app crashes in the simulator.
Here is the log output:
01-04 11:02:19.103 2495-2495/com.example.android.effectivenavigation D/AndroidRuntime﹕…

user2302718
- 71
- 1
- 10
1
vote
0 answers
Tabbed fragment don't show listviews
i try to combine tabbed fragment with listview. I fetch data by JSON and put it in listview in fragment but when i start app fragment don't show list view.
Actors.java
`
public class Actors {
private String name;
private String…

Engineer
- 21
- 1
1
vote
1 answer
Xcode 5. Tabbed application without storyboard?
The question is similar to this one, but it was created when Xcode 5 doesn't exist. And that question is still not answered. There are also similar questions about how to delete the storyboard, but they are about navigation controller, not tab bar…

Gargo
- 1,135
- 1
- 10
- 21
1
vote
2 answers
wxpython print to tabbed panel
I am trying to print to a specific tabbed panel in wxpython, but my below code just seems to print to the 3rd (Running Jobs) TAB panel window and I can't work out why. I want to print the 2nd (QueueList) TAB panel.
import wx
import sys
global…

speedyrazor
- 3,127
- 7
- 33
- 51
1
vote
0 answers
CSS tabbed menu, 100% height not working - PART 2
After the other post on this, I think I needed to step back and take a look and make a more clear fiddle to show the issue happening.
So, my content within the blue box is overlapping the footer and the rest of the page when it gets to a certain…

jfar_2020
- 161
- 4
- 23
1
vote
1 answer
css loaded as image/png
This question is probably not the best SO practice but I really don't have a clue of what is going on in here.
One of my .css files sometimes (~50% of the times) is loaded as an image. Here the screenshot:
which is supposed to be text/css (as it's…

nigmastar
- 470
- 5
- 15
1
vote
2 answers
Java swing saving tabs on close
I am working on a simple text editor.
I have a text area in a tabbed pane. When the user goes to save the file is there anyway to save the tabs as well?
Here is a snap shot of what I am working on.
When the user has more than one tab open I would…

user2367327
- 31
- 1
- 7
1
vote
2 answers
find a control inside a tabpage that is created with a usercontrol
i have created a usercontrol, then i have a tabcontrol where in there is a tabpage that contains a 2 buttons, when button1 is clicked, it creates a new tabpage and the user control is added to its controls through
tab = new TabPage();
UserControl1…

Suresh Kinta
- 33
- 1
- 7
1
vote
1 answer
pushViewController from appDelegate - Problems
I've searched around the Internet and stack overflow and still can't solve this problem.
It is a tabbed application template.
When the app isn't running and it receives a push notification I want to read the contents of launchOptions from
-…

JavaWizKid
- 69
- 1
- 8
1
vote
1 answer
Spry Tabbed Panel Widget
Hopefully someone can help. I have a working Spry tabbed panel widget in my site structured as standard with the following main tabs:
-
user1836432
- 11
- 1
1
vote
1 answer
How to create and manage a nested TabbedViewNavigator?
I'm trying to implement a nested TabbedViewNavigator (inside a View). I did this by following method 3 described in this post:
Flex - how to make a tabbed panel
Code here:

Edd
- 932
- 10
- 24
1
vote
1 answer
Tabbed panels and hashchange plugin
I'm using the following code to create tabbed panels and it's the only one that it's doing the job pretty good. I tried easytabs but it doesn't work properly with what I have.
So, here we go:
/*
* The following lines are for main tabbed panels
…
user1642216