tabs

jqGrid - Problems opening in jquery tabs (on Firefox and Google Chrome)

I have developed a very simple MVC app to test out trirand's jqGrid for MVC. The app opens a jqgrid in a jquery tab group and everything is ok with IE. However when I use Firefox jqgrid only opens occasionaly in the first tab (but not under any other tab), and in Chrome my jqgrids dont appear to open under any tab of the group. I'm a ...

UITabBarController detect tab clicks

I'm creating an app using tab bar controller. It has 2 tabs. In first tab, it will have a text field and a submit button. user will enter some value in text field and clicks submit. Now my problem: on click of submit button, some result "X" is computed depending on value entered in text field and it will open second tab. here result "X"...

jQuery tabs: Post previously selected tab when opening a new one

Hi Having two forms, each in it's own jQuery UI tab, how can I post the form in the deselected tab when clicking a new tab? This I need to do to maintain state at the server side when the user navigates between tabs. I have looked into something like $('#tab-container-id').bind('tabsselect', function(event, ui) { ... }); but ha...

Typical Search, Result and Detail Workflow Staying Within an Android Tab

So, I've been banging my head looking for a good solution for a few days and am stuck. I have a search screen (Activity) in a tab, and after the user enters a value and clicks "search" I would like the results to come back in that same tab, and then if an item from the results is selected, to show more detailed results, in that same tab...

Theming certain pages in drupal

I need to theme tabs on a certain number of pages "user/*". If i simply use theme_menu_local_task in template.php, it will use the function on all pages, not only on "user/*". Is there a way to theme only "user/" pages and leave others alone? ...

how to use "tab space" while writing in text file

SimpleDateFormat formatter = new SimpleDateFormat("ddMMyyyy_HHmmSS"); String strCurrDate = formatter.format(new java.util.Date()); String strfileNm = "Cust_Advice_" + strCurrDate + ".txt"; String strFileGenLoc = strFileLocation + "/" + strfileNm; String strQuery="select name, age, data from basetable"; try { stmt = conn.creat...

e-texteditor go to last active tab doesn't work

I checked the option in the settings, but still clicking CTRL-TAB once does not go to the last active tab. I tried restarting the editor but to no avail. my e-texteditor version is 1.0.43 This is really really annoying. ...

Flash movies in inactive browser tabs pause or don't execute in real time

I'm noticing some unexpected behavior. Some time in the last few months, a change in either Firefox, the Flash player, or both, has made it so that Flash movies that are in inactive browser tabs no longer execute in real time. They appear to still execute, but only in bursts, and not in a predictable way. This is a problem because I d...

Any way to add tabbed forms in django administration site ?

When using Django "out-of-the-box" administration forms, the "change form" pages can be rather long for complex models (with a lot of fields). I would like to use tabs in the "change form", so things can be more readable (group fields by tabs...) Instead of doing it all by myself, by modifiying the 'change_form.html' admin template, I ...

How can I use that sliding tab widget on the Android 2.0+ lockscreen?

I'm interested in using it for one of my apps and I was wondering how I can use one of them. Are there any other similar widgets out there for 2.0+? Thanks ...

How to add entries to "Favorites"..?

I am working on a navigational app where i have my entries of recipes. What I need is to implement a button which will add a recipe on a favorites tab.. How can I do that? Any help would be appreciated. ...

jquery ui tabs load event does not fire

I have got the following very simple code: function init() { var articleTabs = $('#articleTabs'); articleTabs.tabs('add', admin.pageVars.siteRoot + '/articles/themes/' + admin.pageVars.params.id, 'Temas'); articleTabs.tabs({ load : function(event, ui) { $('.jsonForm').jsonForm(); } ...

close button only for some tabs in Qt

Hello, I am using Qt for an assignment I have for college, and I want to use QTabWidget to display a chat window much like Pidgin's. I want to make the "group chat" tab always open and impossible to close and the rest of the "private channel" tabs closable. QTabWidget's setTabsClosable(bool) is not helping ... any ideas? ty ...

Web form is not updating tables, why?

I have a web application and on page is an update page to update some profile information. Below is the code I am using to update the table. But I think it is wrong. Does anything stick out? The connection string works cause it is used to read the database to get the profile information, I just removed it due to it containing passwor...

Is there a way to make Android tabs slide?

Hi all, I'm new to Android development, and I was wondering if anyone knew either how to make Tabs slide, or how to get a similar effect without tabs. I have quite a few tabs in my application, and it does not look good on devices with smaller screens. Or maybe tabs are not what I am looking for. If you don't know what I'm talking about...

Delphi, how to make independent windows

I have an application that uses tabs like the Chrome browser. Now I want to be able to open more forms and not be limited to only one form. These forms should act the same but if I close main form all forms are closed. How can I make all forms be equal, so no matter which form I close it only closes that form and not exit application bef...

N-son tabbed/JsScrollbar, trying to force gif play from click of link using jquery

Hello everyone, Let me start off by stating the obvious; I am new here. That said I hope I am not violating some standard I missed by posting this. xD For several days now I've been trying to update a rather old site of mine, to which I wont link to given that the update is so drastic that the current product on which I seek your help...

JQuery UI Tabs caching

I am working in an ASP .net MVC Application. I have a JQuery UI tab whose Javascript to enable caching is as follows. function LoadStudentDetailTabs() { $('#tabStudentDetail').tabs({ cache: true, spinner: '', select: function(event, ui) { $("#gridSpinnerStudentDetailTabs h5").text("Loading Detai...

jQuery UI Tabs And Dialog - How to confirm switching tabs with confirm based on the Dialog plugin?

So, the goal is to confirm switching to another UI tab using UI Dialog plugin. Using common confirm method is simple: jQuery("#tabsContainer").tabs({ select: function(event, ui) { return confirm("Some confirmation message..."); } }); but how to to achieve same behavior using Dialog modal box? I think I have to call: ...

Devexpress DockManager and tab captions

I have a tab container, where i can add many tabs with long captions. The default behavior of devex panels is to shrink the caption of the tabs (e.g. MyLongtabName -> MyLong...). How can i disable this behavior (the caption of the tab pages should remain intact) and instead get a scroll-bar? ...