Skip to content Skip to sidebar Skip to footer

Creating New Tab / Switching Between Tabs In Firefox?

I am looking for a way to improve the workflow in a PHP based CMS. There is a lot of switching between the editor mode and the preview mode of the page. The editor mode is huge to

Solution 1:

There is no way to force a window to open as a tab. It's all dependent on the user's preference settings.

Solution 2:

I second the answers that say you should do this in HTML using Javascript. Then it can work in all browsers that support JS.

I would put two divs on the page and show/hide each div depending on which tab is selected. If you are clever about this you could trap the click on the tab and determine if the user left-clicked or middle-clicked. If they left click you load that tab on the page. If they middle-click you let the browser open a new tab/window (according to the user's prefs, don't try to force it), and leave the current window unchanged (that is, don't switch to the new tab). The action for clicking on the tab would be to use AJAX to load the contents of the remote document and put it into the tab. Use Javascript to modify the URL before submitting the AJAX request so that the server knows to send a web page fragment instead of the whole page.

The advantage of this dual-natured solution is that the tabbed approach will work the way you want it to work for the majority of cases, but for users with, say, two screens, or who prefer switching between browser tabs, they will still have the flexibility to work in multi-window mode. This can all be done without any browser extensions and it should work equally well in IE as well as Firefox, Opera, etc. Avoid locking yourself into one browser, even one as excellent as Firefox. One day a customer will need to use Opera or Safari and you'll be stuck.

Solution 3:

You say you don't want to use an iframe to avoid confusion. Now I don't know about the layout of your website, but I've been using the approach that the editor opens in its own div right next to the content being edited and the content is being live updated as you edit. No need to change tabs.

(If the window is too narrow there are HTML tabs Edit and Preview)

It does not seem to add confusion to the user and for me this approach works really well. Maybe it's worth considering in your case.

Solution 4:

What about using iframes and JavaScript?

I know you said you want to avoid 'confusion using iframes', but in my opinion if you really need to load different pages at the same time this is the best option.

In theory, you could create your own tab system using javascript or even better, using jQuery, because its UI module offers pretty cool tab control.

For every tab you could load separate "headerless-footerless" version of your specific admin page inside <iframe> element. If user wanted to modify something different, he will simply click on the tab and bring different iframe.

All this could also be done using AJAX, but iframe solution is quite easy as you just need to load ready page and all postbacks are already handled by original page and separated from master-admin-page.

You might also need to play a little bit to set correct height of your iframe to fit all the content without scrollbars, but this again, is just bit of javascript.

Solution 5:

Nope, there's no way to force the opening of a new tab, simply because this would be unsupported by un-tabbed browsing

You can only set it to open a new window, not a new tab.

Post a Comment for "Creating New Tab / Switching Between Tabs In Firefox?"