tabs

problem with tab-selecting in JQuery

Hello all, I have the following problem: I want to create a webpage in which I can use the JQuey tabs both by a side-bar and by the upper button-bar of the Jquery tabs itself. I am using the following code: title here $(document).ready(function(){ $("#datepicker")....

What is my problem with tab-selecting in JQuery?

I want to create a webpage in which I can use the JQuey tabs both by a side-bar and by the upper button-bar of the Jquery tabs itself. My code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta htt...

How to create jQuery Tabs out of Markdown

Hi, I'm currently running a PHP based Content-Management-System that generates its HTML content with the help of Markdown Extra. Most of the content is structured by headings and sub-headings which results in a very long page. At the beginning of each page I create a table of contents with the help of a list and Markdown Extra's Header ...

Changing Visual Studio 2008 New Tab Position

One of my pet peeves ever since Visual Studio 2005 (behavior is unchanged in VS 2008) came out was the placement of the new tabs when opened. These opened on the left of current tabs which was the opposite of where new tabs opened in Visual Studio 2003 and beyond. In my opinion opening new tabs to the left of current tabs is counter-int...

Is there a Jquery tab control which handles multiple lines of tabs well?

I have an web application with a dynamic number of tabs ranging between 2 to 20. I'm currently using Jquery UI's tab plugin, but finding that it's behaviour is less then Ideal (i.e. around 12 tabs, when it wraps, the second line of tabs move with the tab selection and sometimes jump across 3 lines instead of two. This is a two-fold que...

Trying to standardize exports

I am trying to standardize my exports file. I need to remove all spaces and tabs between the first two fields and replace them with two tabs. I am using VI. So I want to change /vol/vol1/home1/xxx -rw=admin:app:admhosts to /vol/vol1/home1/xxx -rw=admin:app:admhosts making the space equil to To two TABS. I am using VI....

jQuery tabs - need 'All' tab with whole form and individual tabs for each form section

I've tried to google my requirement but without luck. What I have is a form that is broken into several tabs, all which works perfectly. However, now I've been asked to provide an 'All' tab with the whole form, in addition to the individual tabs for each section. Seems like a fairly straightforward request, but I can't see how I can imp...

Show Firefox tab tooltips faster

How can I make the tootip/flyover of the tabs appear faster? There is too much reaction time, it takes ages to look through many of them. I have most of the time 100 tabs open in Firefox (I am using the tab mix plus addon - "tmp"). To see what's in the different browser windows I do not activate them, but I just move the mouse over the...

Refreshing div (cause browse to redraw it)

In a web application I'm hitting some troubles with dynamic content - where by a form being hidden or shown above a jquery ui tab control causes rendering issues until the user hovers there mouse over the tabs, which then causes the tab header to redraw in the correct location. It's only occuring in IE7 and as a quick hack I'm doing thi...

wxNotebook Close Button?

I'm developing a notepad app using wxWidgets (the C++ version) and I'm working on implementing multi-file support. Using the wxNotebook class, I can't seem to find any documentation on adding a close button to the pages so I can easily close individual files. Is there a cross-platform way to enable this using the class itself? If not, wh...

YUI TabView.get("tabs") => null: race condition?

Inside my "dom ready" function, I create a TabView on an HTML element and call tabview.getTab(0).blah(). Unfortunately every now and then I get an error that tabView.get("tabs") returned null in my javascript console (firefox). YAHOO.util.Event.onDOMReady(function() { tabview = new YAHOO.widget.TabView("content"); va...

Source Editor Tab order in Netbeans 6.5

I recently switched to Netbeans from Eclipse, and the one thing that I liked about Eclipse I'd like to get in Netbeans: The order of the tabs at the top of the Source Editor in Eclipse seems to be related to most recently used, so if I have a group of 5 files I'm working on at one time, they are all likely to be visible in the tab list,...

How do you default to Soft Tabs while programming in Textmate?

My "Soft Tabs" setting in TextMate is not sticky. After I restart TextMate, I often have to set the option again for the same file. How can I make this setting the sticky default across all files? ...

How can I permit tab characters in a textfield in Flash?

I am working on an AS3 Flash game that initially takes a input from a barcode scanner. The data that it scans comes in as one long string using tabs to separate the data segments. The scanner acts as a keyboard and inputs the string into a hidden textfield so that I can grab the string and split it apart to get the data. The input and...

Sys.InvalidOperationException: Handler must be a function.

I've a webpage which contains a TabContainer <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %> ... .... <form id="form1" runat="server"> <asp:ScriptManager ID="sm1" runat="server"></asp:ScriptManager> <cc1:TabContainer runat="server" ID="tbcTabContainer" OnClientActiveTabChanged="Change...

Vim: Filename completion in reverse order

To open a file in vim, I usually type ":e " and then hit tab until the file I want appears. However, I always get in a rhythm and inadvertently go ONE past the desired file. Without knowing how to move backwards, I end up tabbing all the way to the end and repeating the whole process. Is there a way to perform the filename completion ...

Capturing tab in Silverlight TextBox

How can I capture a tab entered in a Silverlight TextBox and render 4 spaces (or a tab) in it's place? I can't figure out how to block the tab navigation. ...

C# making a tab, adding controls to the tab, and then having multiple tabs of that type

TabPage newpage = new TabPage(); Tabs.TabPages.Add(newpage); newpage.Controls.Add(this.tableLayoutPanel41); newpage.Location = new System.Drawing.Point(4, 26); newpage.Name = "AddMaintAgreement" + offset; newpage.Size = new System.Drawing.Size(736, 523); newpage.TabIndex = 10; newpage.Text = "Add Maintenance Agreement"; newpage.UseVisual...

Are tabbed interfaces confusing?

We are designing a web site and have run into some UI challenges that would be neatly solved with a tabbed interface. Users will interact with different elements of the site (there are some basic view/edit/copy/paste functions available) and having only one object in one tab visible at a time simplifies things quite a bit. We are, of c...

jQuery UI Tabs and ajax form with mvc

Having problems with this setup what im trying to do is like so. Steps Fill out all elements of a Ajax.BeginForm(). Click submit The Ajax form then renders a partial view. The partial view has a list of tabs that handle different tasks. All tabs essentially have their own partial view. When each partial view is loaded they perform the...