tabs

Different 'views' in a single WPF window

I'm doing a VB.Net subject at university and the major assignment is the creation of a WPF application. The application is management-focused (adding, modifying, deleting entries, etc). As these are all rather disparate tasks I'm thinking to create a tabbed interface for my assignment (in a similar vein to Spybot's interface: http://www...

Android: Error when using ListActivity inside Tab Layout

My apologies in advance if this is a repeat question, I looked all over and couldn't find any solution to help me. I have followed the android dev tutorial for creating a tabbed UI that uses a separate activity for each tab. And I got it working just fine. Until... I am attempting to put a ListView inside one of the tabbed activitie...

Custom Tab bar in Android

Is it possible to customize tab bar in android? Customize in the sense, like in iPhone, the tab bar is at the bottom of the screen; in Android, can we place the tab bar at the bottom and its content on top of it? ...

jquery tools : Configure tabs with ajax to change title

Hi, I'm using jQuery tools with the Tab feature and Ajax support to link to pages. My problem is that I want to change the title of the page when the tab is changed. I can't find any references on the guide. Thanks. ...

Android Tab Layout tutorial?

I want to be able to assign different images to my tabs in the TabLayout control depending on whether the item is selected or not. I followed the tutorial on the Android site but they made the example with just one image and for it it works. But it doesn't work for the rest of the tabs. How can I make it work? This is my code: The main ...

load user control in tab

I have a user control that fills a combo from DB overriding the OnLoad. A form containing the control has tabs and the control goes into the 3rd tab. Within the form_Load i set the value for the combo. My problem is that the user control onload is not fired until the form_load is completed, therefore my combo.items is not populated and ...

Does Facebook tabs allows us using things like this getURL("facebook.com/example","_self")?

I have to make Flash tab on Facebook. There should be links in it, to other tabs(like: images, wall, videos etc). I'm using actionscript 2.0. getURL("facebook.com/example","_blank") is working perfectly, but I have to use "_self". Does Facebook allows developers to use this function? Thank you David ...

How to change gnome-terminal title in Ubuntu 10

I've tried setting my PROMPT_COMMAND variable: PROMPT_COMMAND='echo -ne "\033]0;"myWindowTitle"\007"' but something changes my tab (or the whole terminal title) to 'user@hostname:/current/path', thus PROMPT_COMMAND='echo -ne "\033]0;"myWindowTitle"\007" && sleep 3' changes title for 3 second only :) ...

jQuery UI tabs javascript click function not working.

I am using jQuery UI tabs, but I am having an issue. My javascript code: $(function() { $("#tabs").tabs(); }); My HTML: <div class="demo"> <div id="tabs"> <ul> <li><a href="#tabs-1">Eat</a></li> </ul> <div id="tabs-1"> tab 1 </div> <div id="tabs-2"> tab 2 </div> <div id="tabs-3"> ...

extend optimized minitabs (Jquery)

I'm using wordpress as cms and mystique theme for my site and use it's tab feature in my code but this tab code is not able to get active tab by url (ex: http://www.animcentral.com/anime/death-note#section-forums it should activate first tab from left but it doesn't) I wanna Extend this javascript to be able to active selected tab by url...

Prevent user from opening JSF page in more than one tab/window in a browser

Is it possible to prevent user from opening JSF page in more than one browser tab or window? ...

Android:How to change opened tab dynamically

Hi, I have an Android application which has four tabs (I use a main TabActivity with TabHost and TabSpecs). In one of my sub activity (activity opened in a tab), i need to open a tab not by clicking on the tab title and i don't know how to do this. For example, i have a button in my activity and when i click on it, it opens a different t...

How to setup the Tabs Navigation in a typical view in wpf/silverlight?

How do i get the tabs to stop in the order I want across usercontrol contained elements to local elements in a view, the view is static xaml, not composed ( like with prism ), should this involve code, or can i do this in xaml only? also if you know how to do this in blend that would be very helpful. ...

Dynamic event of textbox

Hi. How do you make an event dynamically? Like for example, I'm making a notepad with tab support for practice, and for every new tab, a text box is made dynamically. How can I make an event (TextChanged for example) for these text boxes? Thanks. ...

How to make startActivity method render new activity view in the tabwidget?

I have setup a tabwidget, and in one panel there is a button to trigger a new activity, I want to display the sub-activities just in the tab widget, but not to open a new window. How can I do that ...

Accessible jquery tabs - direct link to tab

I have tabs on my page. The code for them is following: $('ul#tabs li a').click(function(){ var id = $(this).attr('id'); var counter = 1; $("ul#tabs a.current").removeClass('current'); $(this).addClass('current'); $('.contentBox').not('.' + id).hide(); $('.contentBox.' + id).show(); ...

PHP HTML \t and Tab Troubles

I have started making a syntax highlighter in php (only a quick one) and so far I have got a code box generator (aka it creates a table with styles that looks good and can display source code and html code). At the moment when writing code with it I do this: $code = "def example_ruby_code(does_it_work) " . "(insert tab here) @does_i...

Javascript to detect when a page has loaded in another window in Firefox

Hi, I was wondering what is the best way to detect when a page has finished loading where the page in question is in a different tab or window. And where page to be loaded could be any page on the web and is not under my control. I am using Firefox only and I dont mind if the solution requires a firefox extension or greasemonkey script...

HTML: how to force open links in a new tab

i use target="_blank" to open links in a new tab... but in IE it opens a new window which is completely logical because that is what _blank is supposed to do and i don't know how target="_blank" behaves in other browsers... is there something to force links to open in a new tab.. if the browser supports tabs... else make a new window ...

WPF TabControl On SelectionChanged, set focus to a text field

I have a tab control, and a few tab items. I am successfully listening to the SelectionChanged event, and checking if the tab I'm interested in is the currently selected one. I'm using this code (below), and stepping through the debugger, I can see that my branching logic works as designed; however, the issue I'm having is that somethin...