[jquery-ui] tabs - exception for one tab

2008-10-23 Thread skriptek
Hi, I hope someone could help me with my problem. Here is my code: div id=container ul lia href=/tab1/ title=tab 1tab 1/a/li lia href=/tab2/ title=tab 2tab 2/a/li lia href=/tab3/ title=tab 3tab 3/a/li lia

[jquery-ui] Dialog close link

2008-10-23 Thread Spot
If this has been addressed already I apologize but I have not been able to find anything in the docs or in this list. Is there some way to disable the close 'X' link which appears in the title bar of a Dialog box? I want to remove it completely. Thanks.

[jquery-ui] tab link as normal link

2008-10-23 Thread skriptek
Hi, I hope someone could help me with my problem. This is my code: div id=container ul lia href=/tab1/ title=tab 1tab 1/a/li lia href=/tab2/ title=tab 2tab 2/a/li lia href=/tab3/ title=tab 3tab 3/a/li lia href=/not-a-tab-link/tab 4/a/li /ul /div script type=text/javascript

[jquery-ui] Each() Method applied to Tabs

2008-10-23 Thread .chris
There actually might be a simpler way to accomplish this, but my first instinct is the each() method. You may want to note that I am very new to jQuery, so there's a good chance that instinct is way incorrect. Anyway, I'm building a small web application for a financial institution. It consists

[jquery-ui] Non Contiguous Terms

2008-10-23 Thread Jones Ambrosi
Hi, I try non contiguous selection of itens. Ex: Long term support support long term I need select this itens with word entry is Long Support. I change the regular expression to (?![^;]+;)(?![^]*)(long|support)(?! [^]*)(?![^;]+;) and highlight work. But if spaces is detected no itens

[jquery-ui] choppy show/hide effects

2008-10-23 Thread [EMAIL PROTECTED]
I am experimenting with the jquery ui effects and i am noticing something that is very troubling. It appears that the effects are all bounded by the size of the fully shown image. This is problematic, since it causes choppiness in the showing and hiding of elements in a web page. In other

[jquery-ui] datepicker and daylight savings time transitions

2008-10-23 Thread David C Nelson
Datepicker seems to think that the first days of November are dated 1, 2, 2, 3, 4,... when using Americas/Chicago timezone and Firefox 3.0.3. With your time zone set to one of the US timezones (and observing daylight savings time), visit http://ui.jquery.com/themeroller and change the month in

[jquery-ui] Non ajaxified tabs

2008-10-23 Thread Narinder
I am using jquery tabs UI as the navigation menu for my application. The default behavior of jquery tabs is to open the target href of the tab in a panel. I need a way to teach it to open the tab href in the browser as a new page instead of inline ajax content. Is that doable at all? I hooked

[jquery-ui] Re: Scrollbars and Dialog

2008-10-23 Thread Richard D. Worth
If you could share a code sample/pastie/demo page, it would help us see whether you've found a bug, or maybe just haven't used the right option/markup. Also, it would help to know what version of jQuery UI Dialog you are using. 1.5.2? 1.6rc2? And are you experiencing this in all browsers? Thanks.

[jquery-ui] Re: tab link as normal link

2008-10-23 Thread Klaus Hartl
Starting from here: http://docs.jquery.com/UI/Tabs#...open_a_tab_in_a_new_window_instead.3F we can try this: $(document).ready(function() { var $tabs = $('#container ul').tabs({ select: function(e, ui) { if ( $('a', $tabs).index(ui.tab) == 3 ) {

[jquery-ui] Re: Non Contiguous Terms

2008-10-23 Thread Richard D. Worth
This list is specifically for questions about jQuery UI plugins, a list of which can be found here: http://docs.jquery.com/UI Best to post general jQuery questions to the main jQuery list: http://groups.google.com/group/jquery-en/ - Richard On Wed, Oct 22, 2008 at 2:48 PM, Jones Ambrosi

[jquery-ui] Re: indexing jQuery UI tabs

2008-10-23 Thread Klaus Hartl
On 22 Okt., 19:52, fasterthanlight [EMAIL PROTECTED] wrote: Aight, so I'm implementing some awesome jQuery tab action, I'm trying to pull an index, in that tab the first would be 0, 2nd would be 1, and so on and so forth. I need to be able to determine which tab is currently selected out

[jquery-ui] Re: Use of Datepicker leads duplicate form submission

2008-10-23 Thread Richard D. Worth
If you could provide a sample page/simplified test case, that would help a lot. Thanks. - Richard On Thu, Oct 23, 2008 at 2:53 AM, Roman [EMAIL PROTECTED] wrote: Uhh... will any of the developers look at this? Duplicate form submission is pretty serious. Don't you think?

[jquery-ui] Re: update content

2008-10-23 Thread Richard D. Worth
Maybe better to ask on the main jQuery list: http://groups.google.com/group/jquery-en/ since your question does not seem related to jQuery UI. Thanks. - Richard On Wed, Oct 22, 2008 at 10:21 PM, Justin [EMAIL PROTECTED] wrote: I'm new to jquery and I'm writing some code but I'd like to

[jquery-ui] Re: Scrollbars and Dialog

2008-10-23 Thread Donn
On Thursday, 23 October 2008 12:11:34 Richard D. Worth wrote: If you could share a code sample/pastie/demo page, it would help us see whether you've found a bug, or maybe just haven't used the right option/markup. I have already ripped-out and changed all the code I was struggling with. It

[jquery-ui] Re: Selecting nested tabs with text link

2008-10-23 Thread LouisHeim
Klaus Thanks you for responding to my query. Unfortunately I have not been able to get your solution working. I am sure that I have done something wrong so would you mind taking a look at my implementation please? In the page head i have: function addExecutor() {

[jquery-ui] Re: Selecting nested tabs with text link

2008-10-23 Thread Klaus Hartl
In what way do you want to change the tab content? Load from Ajax? I can't really tell what's wrong with partial code and having to guess what exactly you want to do... --Klaus On 23 Okt., 12:59, LouisHeim [EMAIL PROTECTED] wrote: Klaus Thanks you for responding to my query. Unfortunately I

[jquery-ui] Re: Scrollbars and Dialog

2008-10-23 Thread Richard D. Worth
Thanks for sharing what you could. - Richard On Thu, Oct 23, 2008 at 7:17 AM, Donn [EMAIL PROTECTED] wrote: On Thursday, 23 October 2008 12:11:34 Richard D. Worth wrote: If you could share a code sample/pastie/demo page, it would help us see whether you've found a bug, or maybe just

[jquery-ui] Sortables on DIVs

2008-10-23 Thread Michael Price
Hi all, I'm trying to use the UI sortables plugin on a div which contains other divs. These divs can be re-ordered by drag and drop, so I thought I'd use the sortable plugin but I'm having trouble - am I missing something obvious? Script: script type=text/javascript !--

[jquery-ui] Re: Selecting nested tabs with text link

2008-10-23 Thread LouisHeim
Hi Klaus Here is a simplified version of the source code (the real page is 1094 lines long). All I have done is strip out the content within each fragment / panel. Thank you for taking the time out to look at this. !DOCTYPE HTML PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://

[jquery-ui] Re: indexing jQuery UI tabs

2008-10-23 Thread peschler
Directly taken from the docs at http://docs.jquery.com/UI/Tabs: $('.ui-tabs-nav').bind('tabsselect', function(event, ui) { ui.options // options used to intialize this widget ui.tab // anchor element of the selected (clicked) tab ui.panel // element, that contains the contents of the

[jquery-ui] Re: Selecting nested tabs with text link

2008-10-23 Thread Klaus Hartl
Not sure, but looks like you want this: $(function() { var $tabs = $('#tabtop, #innermemorialtabs').tabs(); window.addExecutor = function() { $tabs.eq(0).tabs('select', 1) .end().eq(1).tabs('select', 0); }; }); --Klaus On 23 Okt., 14:30, LouisHeim [EMAIL

[jquery-ui] Re: Dialog close button doesn't work after ajax

2008-10-23 Thread Scott González
Please post a demo page showing the problem so we can look into this. Thanks. On Oct 21, 9:26 pm, javatech [EMAIL PROTECTED] wrote: Hi, I'm new at JQuery and try to get dialog close button working. Currently, if there is no AJAX, close button worked but if I did a ajax call, then close

[jquery-ui] Re: Dialog doesn't work in IE 6 and themeroller.css

2008-10-23 Thread Scott González
Try updating to the 1.6rc, this problem has been fixed: http://ui.jquery.com/bugs/ticket/3349 On Oct 22, 12:45 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, The Dialog component doesn't seem to work in IE 6 if I don't specify a class name for the div. If I set class=flora then it works.

[jquery-ui] Re: n00b question about dialog('open'), ('close'), ('remove') and form results

2008-10-23 Thread Scott González
The actual HTML of the dialog doesn't reset on open; if you want that to happen, you'll need to do it yourself. You can either clear out the fields in the dialog prior to opening it or clone the div and create a new dialog each time. On Oct 22, 5:07 pm, [EMAIL PROTECTED] wrote: Hello- I am

[jquery-ui] Re: Each() Method applied to Tabs

2008-10-23 Thread .chris
Thanks Klaus. After I had posted this I actually began digging deeper into the plugin to see if there was a simpler solution, and lo and behold, there was the 'select' method. Ha. I haven't worked on it since then, so I thank you for posting this and pointing me in the right direction for the

[jquery-ui] Re: indexing jQuery UI tabs

2008-10-23 Thread fasterthanlight
Freaking awesome, thanks for the help. Heh, I just started trying to learn jQuery this week, theres a lot of ground to cover :D On Oct 23, 5:33 am, peschler [EMAIL PROTECTED] wrote: Directly taken from the docs athttp://docs.jquery.com/UI/Tabs: $('.ui-tabs-nav').bind('tabsselect',

[jquery-ui] Re: update content

2008-10-23 Thread Justin
Ok, I'll ask on the main list, but it actually was a question for jQuery UI. What I am describing is something a UI framework should do. So my question was Does jQuery UI do this? I just wanted to make sure I wasn't duplicating work. On Oct 23, 5:55 am, Richard D. Worth [EMAIL PROTECTED] wrote:

[jquery-ui] Re: Unorthodox use of tabs.

2008-10-23 Thread M. L. Giannotta
It’s not really that I wish to insist, and I know double posting and bumping is somewhat rude. But I realize how topics get easily lost in such an active group, I had problems finding that myself. I promise this is the last time I bump this. The questions remain the same... Thank you, and sorry

[jquery-ui] Re: Dialog doesn't work in IE 6 and themeroller.css

2008-10-23 Thread [EMAIL PROTECTED]
I think I must have modified the css file by accident because I've downloaded it again and it works like a charm... Thanks On 23 oct, 14:02, Scott González [EMAIL PROTECTED] wrote: Try updating to the 1.6rc, this problem has been fixed:http://ui.jquery.com/bugs/ticket/3349 On Oct 22, 12:45 

[jquery-ui] ThemeRoller

2008-10-23 Thread Nathan Maves
How are revisions made to this very cool product? Are there new version that are released? Nathan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups jQuery UI group. To post to this group, send email to

[jquery-ui] Re: Meet The Raxan Framework

2008-10-23 Thread Yang Gu
Hi, Good,It's beautiful,good job. Thanks. -- Please be free contact with me for any question or suggestion. Regards, Thanks. Yang(谷阳) Mobile: +86 13774305530 Email : [EMAIL PROTECTED] MSN : [EMAIL PROTECTED]

[jquery-ui] Problem with Accordion in Tabs in IE

2008-10-23 Thread Pete
I am constructing a front page news feed using 3 accordians stored in tabs. When you select each tab it loads a different accordian. In firefox this is fine. However, when you run it in IE, the tab that it loads with works fine, but the the other tabs, when clicked, do not have accordion