tabs

Tabbing behavior in WebForms

In WinForms, I can design a form and have a TabValue to control which control is selected each time the user hits 'Tab'. My question, in a Webform, is there a mechanism for doing the same thing? Edit: Does the same apply to an Ajax heavy application? ...

Tabs in Tkinter

Having played around a little with both Tkinter and wxPython, I like Tkinter much better in terms of how clean my source code looks. However, it doesn't seem to have as many features; in particular it doesn't have tabs (as in, the tabs at the top of a Firefox window). A little Googling on the subject offers a few suggestions. There's ...

An easy way to set the active tab using controllers and a usercontrol in ASP.NET MVC?

How do I create tabbed navigation with the "Current" tab highlighted in the UI? ...

Tabs, Text-Mate, Editing HTML (Rails)

Is there any way to force Text-Mate to use a two-space tab instead of a full tab when editing HTML (Rails) documents? ...

Visual Studio - tips for managing work on many open files

How do you feel about VS making you hunt for a tab that you used just minutes ago when you have a bazillion open tabs? What about constantly dragging tabs around to keep the ones you use close together? Oh, so you think AARGH, too? Then read on. I work on a piece of software with dozens of projects and hundreds of files. It's really ea...

Getting emacs to untabify when saving certain file types (and only those file types)

I have the following in my .emacs file: (defun c++-mode-untabify () (save-excursion (goto-char (point-min)) (while (re-search-forward "[ \t]+$" nil t) (delete-region (match-beginning 0) (match-end 0))) (goto-char (point-min)) (if (search-forward "\t" nil t) (untabify (1- (point)) (point-max)))) ...

How to move "Solution Explorer" tab in Visual Studio

Does anyone know how to move the "Solution Explorer" tab in Visual Studio 2005? It's on the left, and I can't move it to the right. Thanks, Alan ...

Activate Firefox tab in Greasemonkey/Javascript? Is this possible?

Hello, I developed a greasemonkey script that refreshes a page and checks for certain updates. I would like to run this script in a tab and browse the internet in another tab, but then have the script automatically activate it's tab when an update is found. Im not sure how clear that was, maybe this is better: Tab 1 is running a greas...

Tab spaced data to padded columns

Looking for a column formatting script, I have a feeling this could be a one line awk. Ideally, a small shell script is all I am after. The data is tab separated, each cell in each row is of variable length, and of course, may have spaces in it. So we have something like this dasj dhsahdwe dhasdhajks ewqhehwq dsajkdhas e dward da...

JQuery TabData

Dear All I have designing the TabMenu Like following <script type="text/javascript"> $(function() { $('#container-1').tabs(); $('#container-2').tabs(); } </script> ..... <div id="container-1"> <ul> <li><a href="#fragment-1"><span i...

How do I run an emacs hook when a buffer is modified?

Building on http://stackoverflow.com/questions/318553/getting-emacs-to-untabify-when-saving-files , I'd like to run a hook to untabify my C++ files when I start modifying the buffer. I tried adding hooks to untabify the buffer on load, but then it untabifies all my writable files that are autoloaded when emacs starts. (For those that wo...

Show SOME invisible/whitespace characters in Eclipse

A long while back I transitioned to doing all my web application development in Eclipse from BBEdit. But I miss one little feature from BBEdit. I used to be able to show invisible characters like tabs but not show other invisibles like spaces. I know that I can bulk turn all of these on in Eclipse, but I wonder if there is a way to show ...

How to differ sessions in browser-tabs?

In a web-application implemented in java using JSP and Servlets; if I store information in the user session, this information is shared from all the tabs from the same browser. How to differ sessions in browser-tabs? In this example: <%@page language="java"%> <% String user = request.getParameter("user"); user = (user == null ? (Strin...

Allow users to insert a TAB into a TextBox but not newlines

I want to have a TextBox which does accept the TAB key (and places a TAB, ASCII 0x09, \t accordingly into the textbox) instead of jumping to the next control. The TextBox has a property AcceptsTab, which I have set to true but this does not give the desired result. It turns out the AcceptsTab property only works then Multiline is set to ...

Rename jQuery tabs?

Is it possible to rename all the tabs in a jQuery UI tab control? My tabs are numbered from 1..N, and it is possible to remove a tab from it. I want to "rename" the remaining tabs so they are numbered 1,2,3,4,5,6, and 1,2,3,5,6,7 when you remove the fourth tab. They should end up named by their 1-based index. ...

Making winform switch tabs

I'm making a winform in C# using Visual Studio 2008. Currently, I have a tabcontrol, containing 2 tabs. In the first the, there is a button. When I click it, I must be taken to the second tab. Problem is, I don't know how. I've tried debugging, looking into al kinds of Properties and messing around with them, but I found nothing that h...

How do I change eclipse to use spaces instead of tabs?

By default eclipse indents with a hard tab character, how do I change it to spaces? ...

XHTML/CSS: Why does Firefox mess up my horizontal tab menu?

Problem page: http://www.antisit.com Stylesheet: http://www.antisit.com/styles.css Any idea how to make this work in Firefox? (It appears as if the right tab image is being pushed below the link, as if there weren't enough room for it within the anchor element. Also, the reason that I'm using two tags is that I prefer using less ima...

Programmatically open new pages on Tabs

Hi, I'm trying to "force" Safari or IE7 to open a new page USING A NEW TAB!. Sorry, It seems like an impossible task :( Programmatically I mean something like: window.open('page.html','newtaborsomething'); Thanks! ...

Visual Studio: Varying tab width/options by .VCPROJ or .SLN file?

Some of our projects call for default Visual Studio tab options (width 4; keep tabs); some call for width 3; use spaces. Don't ask. Rather than set these globally, is there anyway in which I could set this on a per-solution or per-project or even (emacs-style) per-file? Visual Studio 2005 and 2008. ...