tabs

Editor visual studio 2008

I have this annoying problem. I've used some kind of key combination and now my spaces are dots my tabs are arrows etc. does anyone know how to turn this off? ...

tabbed html application

I am writing a complex tab based web application where each tab is unrelated to each other in the sense that there is no interaction. So for ease of development i want I want each tab to be a separate html page viewable on its own and at later stage I can assemble them via tabs or may be menus or trees so question or questions are: I a...

How to disable reload when a tab is created dynamically?

Hi All I use jQuery dynamically create tabs, but each time I click one tab, it will reload the target URL again. How should I disable the reload behavior unless I want it reloads again? thanks a lot. ...

Android : Customizing tabs on state : How do I make a selector a drawable

I know how to put the icon on each tab, that is no problem. I also ran across this : Stack Overflow thread on pretty much same thing I followed one of the links from that question, and found this Pretty much, it said use a selector defined in the xml, sure, did that. But there is no id associated w/ it so I am not sure how to get the s...

How Come Closing A Tab Doesn't Close A Session Cookie?

I'm using session-based cookies with my website. To my complete surprise, I noticed if I set a session cookie (not a persistent cookie), close a tab, and then reconnect to the site, the session cookies are still there. That's not what I would have expected, actually. I would have expected the session cookies to be deleted. If you close...

How to capture CTRL+TAB, CTRL+SHIFT+TAB in WPF?

Does anyone have some sample code that will trap the CTRL+TAB and CTRL+SHIFT+TAB for a WPF application. We have created KeyDown events and also tried adding command bindings with input gestures but we are never able to trap these 2 shortcuts. ...

jQuery UI Tabs back button history

Has anyone been able to get jQuery UI Tabs 3(Latest version) working with the back button? I mean if the user hits the back button they should go to the previously visited tab on the page, not a different page. The history plug in sounds like it can work, but i cant seem to make it work with ajax loaded tabs. If anyone has managed to ...

Unable to make a backward TAB as Shift-TAB in Zsh

Problem: to navigate backwards with TAB in Zsh similarly as in Firefox by Shift-TAB Example of what Shift-TAB should do I run the following code in terminal ls <TAB> I get A B C D E F G H I J K H L M N... I see the following in Zsh as I press TAB I navigate to the folder J by TAB. Then, I observe that I pressed once too ofte...

JQuery UI Tabs widget error handling

When an ajax request fails, the JQuery UI Tabs widget stops responding and the "Loading..." spinner remains on the tab that caused the error. I can get the ajax callback to give me some sort of alert message like so: $('#localtabs > ul').tabs({ ajaxOptions: { success: tabLoadSuccessCallback, error: tabLoadFailureCallback} }); function...

Style WPF Tabs Like Visual Studio Tabs

In WPF is it possible to style the WPF TabControl to lool like those in Visual Studio? Instead of this: (Normal Tabs) I will prefer this: (Styled Tabs) ...

weird tab ghost image

I've got a TabNavigator with multiple tabs. I have one tab that if I end the session on that tab, and I reload the application, then that tab appears -- instead of the default first tab, BUT elements of the default tab appear "ghosted" visibly on the last tab. I've tried using tnAppDash.initialize(); tnAppDash.selectedIndex = 0; ...

create jquery tabs according to data from database

Hello all i want to create tabs according to data from MySQL database using php for instance count the number of groups if they are 5 create 5 tabs.How could i do that. ...

Is it possible to detect if a user has opened a link in a new tab?

If a user is on your website and opens another link (also to your website) in a new tab, is it possible to differentiate this from the user just clicking on the link normally? This can be in javascript, on the server, whatever. I'm guessing that the answer is that you cannot do this, but I wanted to double check. ...

jQuery hiding tab selectors

Hi, Does anyone know how I can go about hiding the tab selectors for the jQuery tab control? I'm trying to do a wizard setup type thing by having multiple views that are hidden but only show up when I want them to. Any ideas? Something else other than tabs i could use? ...

SWT Reduce Flicker for Tab Controls

When I switch tabs in SWT, the content in the tabs flicker. This doesn't happen in my Swing version and is bugging me and my customers. What can I do to reduce this flicker? ...

Excel file with multiple tabs

I need to create an excel file with multiple tabs. I need to do this in Ruby on Rails. I have checked out Apache POI but I'm not sure if it provides that functionality. Does anyone know if it does or if there are other alternatives that can do this? Thanks. ...

need help making tabs to be used by jquery tabs plugin

I am completely new to CSS and can not get around making tabs. We currently have tabs like this However, these tabs are made using a bad looking <table> tag Below is the code that produced the image in above link <table name="incomesummarytable" cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> <td colspan="4"> ...

how to work with jquery UI tabs in IE 6

I am not very good with css but with lot of trial and error I made this page that has jqueyr UI tabs and looks somewhat decent: http://jsbin.com/uquvi However, When I open this page in IE 6, to my disappointment the tabs dont seem to have curved corners. At work right now they have a very bad implementation of tabs because they are c...

Is there an attribute I can put on the A tag to get links to open in new tabs instead of the same window?

I know target="_blank" is supposed to make the thing open in a new window, and for some browsers, like FF3, it will actually make it open in a new tab. Is there a way to exercise more control over this behavior as a developer? ...

Tab key with JEditable fields

I have a page using JQuery and Jeditable to create editable text elements on the page. While editing an element, I would like to be able to tab from one element to the next. I am unsure of how to: Use jeditable or jquery to capture the tab key event (keycode = 9) Once that event is detected, move focus to the next element and acti...