[jquery-ui] Accordion: how to set "active" to last-child?

2009-12-08 Thread Bob Eastbrook
I can't set the "active" panel to be "last-child". Shouldn't the following work? $(function() { $("#accordion").accordion({ active: "h3:last-child" }); }); I'm just using the source from the demo site: http://jqueryui.com/demos/accordion/ Thanks in advance, Bob -- You receive

Re: [jquery-ui] question about resizable

2009-12-08 Thread Richard D. Worth
On Tue, Dec 8, 2009 at 2:27 PM, hosemaria wrote: > Hi > Few questions. > 1. How to force resizable to resize only with one dimension x or y? > Two options 1. only enable certain handles: http://docs.jquery.com/UI/Resizable#option-handles 2. Set min and max width or min and max height to curren

Re: [jquery-ui] IE - icons and hover state (caching problem??)

2009-12-08 Thread Richard D. Worth
This sounds very much like the IE6 flicker bug, but that was reportedly fixed in IE7. In case it's any use, here's more about that: http://dean.edwards.name/my/flicker.html http://misterpixel.blogspot.com/2006/09/forensic-analysis-of-ie6.html http://www.adobe.com/cfusion/communityengine/index.cfm?

[jquery-ui] Re: jQuery UI tab : disable Ajax functionality

2009-12-08 Thread Сергей Serzhik Коваль
$('#tabs').tabs({ select: function(event, ui) { var url = $.data(ui.tab, 'load.tabs'); if( url ) { location.href = url; return false; } return true; } }); -- You received this message because you are subscribed to the Google Groups

[jquery-ui] Open link at active tab

2009-12-08 Thread Сергей Serzhik Коваль
I use jQuery UI Tabs. When user click on link, that apears at tab, he goes to new page. But I want to load new content via ajax in that tab. How can I do this? -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jqu

[jquery-ui] IE - icons and hover state (caching problem??)

2009-12-08 Thread Tim
I've constructed a page that uses icons in a similar way as you have done on the theme roller page (as buttons). When I hover over a button I add the ui-state-hover class, which changes the background image. Unfortuneately, each time you hover, the page makes a request to the server to get the im

[jquery-ui] Re: Submit form to other tab

2009-12-08 Thread Clayton Dukes
Let me expand upon this... Demo site: http://lztest.gdd.net login/pass is demo/demo If you look at the main page, I have 3 tabs: 1. Search form 2. Graphs (open flash charts) 3. Grid display (jqGrid) If a user select criteria on the search page, I need to pass the post variables to the other pages

[jquery-ui] Progress bar in IE7 using RTL language

2009-12-08 Thread tpartner
Hi all, I'm having trouble with a progress bar using a RTL language. Specifically, the bar loads from right to left in Firefox (as expected) but in IE6/7 it loads from left to right. Does anyone have any ideas about how to get it to behave the same (right to left) in all browsers? Thanks in adv

[jquery-ui] Alert(), prompt() etc()...

2009-12-08 Thread Thedeejay
Hi every body! First, sory for my bad english :s I'm new to jQuery UI, and I would like to ask you some help. I have to adapt an old script, very ugly. To make it cute, I use UI, but I would like to replace all prompt() and alert() by home made jquery UI dialog function, but every time I try,

Re: [jquery-ui] Re: Themeroller themes do not show on first visit

2009-12-08 Thread Clayton Dukes
Thanks Steve! I re-coded everything today to place all js in the footer (before the body close). The exception was only a couple of items, no big deal. Now for my dumb question: which css? Say, if I want the default to be ui-lightness, do I do this in the header? or something else? On Tue,

[jquery-ui] Submit form to other tab

2009-12-08 Thread Clayton Dukes
Hiya Folks, Is there a way to have a form field on tab1 that sends post data to tab2 (and then shows tab2)? -- __ Clayton Dukes __ -- You received this message because you

Re: [jquery-ui] Re: Default scroll position of jQuery UI Dialog

2009-12-08 Thread Richard D. Worth
Did you try scrolling the content back to the top yourself, when the dialog opens? - Richard On Tue, Dec 8, 2009 at 4:16 PM, Richard D. Worth wrote: > Interesting. This is likely related to two things dialog has to do to your > content: > > 1. wrap it > 2. place it at the end of the body to get

Re: [jquery-ui] Re: Default scroll position of jQuery UI Dialog

2009-12-08 Thread Richard D. Worth
Interesting. This is likely related to two things dialog has to do to your content: 1. wrap it 2. place it at the end of the body to get around stacking issues in IE - Richard On Tue, Dec 8, 2009 at 3:33 PM, Joshua Beall wrote: > Well, I got it working, but all I did was remove the checkbox an

[jquery-ui] Re: Problem with sortable in Internet Explorer

2009-12-08 Thread moxen
I really need some help on this problem - please ... On 23 Nov., 10:42, moxen wrote: > Hi there > > I have now spend almost 3 days trying to get this to work in Internet > Explorer: > > http://www.faggrupper.dk/sortable.html > > I have testet in Chrome, Firefox, Safari and Opera, and it's working

[jquery-ui] Re: Droppable, SSL & IE

2009-12-08 Thread Scott
So my problem isn't droppable, it isn't even jquery although I can fix it in jquery. It has to do with the remove() function and SSL. On an element with a background-image set if you do a remove() from an event triggered by a child node it you will throw this error for no reason. So when I set a

[jquery-ui] Re: Default scroll position of jQuery UI Dialog

2009-12-08 Thread Joshua Beall
Well, I got it working, but all I did was remove the checkbox and the mailto link. I promise that was not working for me earlier. It's possible there was a browser cache issue, though. Very strange, either way. -- You received this message because you are subscribed to the Google Groups "jQue

[jquery-ui] Re: Default scroll position of jQuery UI Dialog

2009-12-08 Thread Joshua Beall
Hmm... even though in my jsbin example I get it to have a default scroll position that's "top" if I get rid of either the mailto link or the checkbox, it's not doing that on my real site. There must be something else that's triggering this. I'll keep experimenting... -Josh -- You received th

[jquery-ui] Re: Default scroll position of jQuery UI Dialog

2009-12-08 Thread Joshua Beall
On Dec 8, 1:55 pm, "Richard D. Worth" wrote: > Can you share a live sample page? Or if don't have a place to host one, use > jsbin.com: > > http://jsbin.com/ Ok, in the process of trying to setup a simplified example for jsbin.com, I've only been able to reproduce this when the following two thi

[jquery-ui] jQuery UI tab : disable Ajax functionality

2009-12-08 Thread harry
I have code like this: Tab 1 Tab 2 It is using ajax functionality,how can i disable ajax functionality and let page directly navigate to link? Thanks in advance -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this

[jquery-ui] question about resizable

2009-12-08 Thread hosemaria
Hi Few questions. 1. How to force resizable to resize only with one dimension x or y? 2. Is it possible to bound resizing by element that is contained by resizable. Ex #main is resizable, and I want to stop resizing when border meets borders of #innner. Greetings -- You received this mess

Re: [jquery-ui] Default scroll position of jQuery UI Dialog

2009-12-08 Thread Richard D. Worth
Can you share a live sample page? Or if don't have a place to host one, use jsbin.com: http://jsbin.com/ Thanks. - Richard On Tue, Dec 8, 2009 at 12:22 PM, Joshua Beall wrote: > Hi All, > > I've got a jQuery UI dialog that has a good bit of text. I've got an > explicit height set, so it give

[jquery-ui] Re: Slider reverse Min and Max

2009-12-08 Thread Nathan Wolke
One means I have done to produce even string representations in the slider is to make an array of the values you want and then use the min/ max as the array's length like this: min: 0 max: reverseYears.length - 1 and then do something like this to show the values: reverseYears[ui.values[0]] + '

[jquery-ui] CSS override? Integration issue

2009-12-08 Thread dodoecchi
Hello all, I would like to integrate jQuery UI tabs in wordpress. But some of the theme's css is mixing with the tabs' css (you can see bullets in tabs, large paddings/margin etc...) How can I fix that? Dorian -- You received this message because you are subscribed to the Google Groups "jQuery

[jquery-ui] Re: Can I get rid of the "x" on the jQuery UI Dialog widget?

2009-12-08 Thread Joshua Beall
On Dec 8, 11:30 am, "Richard D. Worth" wrote: > You can also remove it entirely: > > $('#myDialog').closest('.ui-dialog').find('.ui-dialog-titlebar-close').remove(); Thanks, that worked great. -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To po

[jquery-ui] Default scroll position of jQuery UI Dialog

2009-12-08 Thread Joshua Beall
Hi All, I've got a jQuery UI dialog that has a good bit of text. I've got an explicit height set, so it gives me a scrollbar along the righthand side. This is great. The problem is that by default, when the dialog pops up, it's scrolled all the way down to the end of the text. I want it to sta

[jquery-ui] Tabs + Accordion in each tab, auto height issue

2009-12-08 Thread JSiebe
Howdy! I am having an issue with the autoHeight option in accordion instances within a Tab instance. My first tab loads it's accordion instance fine and auto expands the height to match my content just fine. When I switch to tab 2, or 3, etc. The accordions in those tabs do not auto expand to ma

Re: [jquery-ui] Icon's not showing properly (custom theme)

2009-12-08 Thread Richard D. Worth
Try downloading the theme again (the custom theme css contains a long url with all your custom settings, so you don't have to redo them). I cleared the cache on the server after seeing your message this morning. This fixes it in almost all cases. My guess is you didn't receive the images folder in

Re: [jquery-ui] Can I get rid of the "x" on the jQuery UI Dialog widget?

2009-12-08 Thread Richard D. Worth
Easiest way is just to hide it with css: .ui-dialog-titlebar-close { display: none; } You can also remove it entirely: $('#myDialog').closest('.ui-dialog').find('.ui-dialog-titlebar-close').remove(); - Richard On Tue, Dec 8, 2009 at 11:26 AM, Joshua Beall wrote: > Hi All, > > We'd like to us

[jquery-ui] Can I get rid of the "x" on the jQuery UI Dialog widget?

2009-12-08 Thread Joshua Beall
Hi All, We'd like to use the jQuery UI Dialog widget (here: http://jqueryui.com/demos/dialog/#modal-confirmation ) to show to users when they're accepting/rejecting the terms and conditions of our site, after they first login. The problem is that it has an "X" button, which is not clearly accepti

[jquery-ui] Droppable, SSL & IE

2009-12-08 Thread Scott
After the drop event is triggered I get the following message: "Do you want to view only the webpage content that was delivered securely?" It doesn't matter if I assign any event handlers of my own so my only conclusion is that its some where in jquery. Am I doing something wrong? Where I click "

[jquery-ui] Re: Themeroller themes do not show on first visit

2009-12-08 Thread Steven Black
Looking at the source at the first hit, no theme .CSS is present, so therefore no theme. You should definitely load a default theme CSS so first-time visitors get eye-candy. Any new theme, once selected in the themeroller widget, is stored in a cookie so theme preference persistance should work.

[jquery-ui] JQuery UI Problem

2009-12-08 Thread Raja
Hi, We have some technical issues with Jquery ,we are working with ASP.NET MVC project . we are facing some issues in UI . already i put some of time on jquery research to resolve those issue but we can't. I tried with some samples with both asp.net web application & asp.net mvc application .

[jquery-ui] altField to next day or date

2009-12-08 Thread Eddie
Hi Just started to use the date picker plugin. On a form I have two input fields, arrival and departure date. What I'm hoping to achieve is that when the datepicker is used to update the arrival field, then the departure field is set to the next day. So far I have this code snippet:

Re: [jquery-ui] Re: Aligning sortable columns inside tabs

2009-12-08 Thread Clayton Dukes
That did the trick. Thanks!!! On Tue, Dec 8, 2009 at 9:28 AM, Steven Black wrote: > Hi Clayton, > > This is a well-known CSS problem involving containers with floats. > There are many ways to solve this.  Here's way too much information > about this:  http://www.positioniseverything.net/easyclea

[jquery-ui] Re: Aligning sortable columns inside tabs

2009-12-08 Thread Steven Black
Hi Clayton, This is a well-known CSS problem involving containers with floats. There are many ways to solve this. Here's way too much information about this: http://www.positioniseverything.net/easyclearing.html What I do is I add the equivalent of ... before the that closes the container

Re: [jquery-ui] scaling ui-slider-handle

2009-12-08 Thread Richard D. Worth
Here's a demo: http://jquery-ui.googlecode.com/svn/trunk/demos/slider/side-scroll.html - Richard On Tue, Dec 8, 2009 at 8:28 AM, AJ wrote: > I've got my slider working but have one extra thing I'd love to add. > > Is it possible to scale my ui-slider-handle, proportional to the > amount of scr

[jquery-ui] Re: Problem in jQuery

2009-12-08 Thread Mean Mike
I just thought maybe your draggable item might have an id and you can't have two items with the same id .. can I see your html too so that I can build out a test page or maybe you can proved a test page ? Mike On Dec 8, 5:28 am, Fabian Kaufmann wrote: > thanks for the reply. > > jquery picks eve

[jquery-ui] scaling ui-slider-handle

2009-12-08 Thread AJ
I've got my slider working but have one extra thing I'd love to add. Is it possible to scale my ui-slider-handle, proportional to the amount of scrollable content in the manner of a traditional scrollbar? I.E. If the width of a page dictates that 50% of the content in my scrollable layer is hidden

[jquery-ui] jQuery Dilaog Resize Issue in IE

2009-12-08 Thread Kapil
Hi I am using resizable jQuery dialog. When resized, the content inside the dialog shows OK in firefox but in IE a vertical scroll bar appears. The bottom arrow of the scroll bar is not visible and out of the dialog. When I inspect it using IE developer tool, it shows that the content is going out

RE: [jquery-ui] wierd problem with simple example

2009-12-08 Thread Gideon
Could you tell me what the filename is, I've tried all sorts of combinations most css files in the library. From: Brandon Ryall [mailto:brandon.ry...@emaint.com] Sent: Tuesday, December 08, 2009 12:07 AM To: jquery-ui@googlegroups.com Subject: Re: [jquery-ui] wierd problem with simple example

[jquery-ui] JQuery Tabs and checkboxes

2009-12-08 Thread usertestor
Hi, Sorry my english is not so good, but i try to explain my problem. I have created tabs via JQuery and i want to place before every "tabname" a checkbox. Here is an Examplecode with checkboxes: http://nopaste.info/0978feb9a1.html The problem is that the checkboxes are not "clickable". How ca

[jquery-ui] Icon's not showing properly (custom theme)

2009-12-08 Thread julie18881
System: Windows 7 / Firefox 3.5.5 JQuery Versions: jQuery 1.3.2 / jQuery-UI 1.7.2 Running on PHP 5.3.0 / MySQL 5.1.37 I have made a custom theme and downloaded the full jQuery and jQueryUI packages I can call datepicker, however no icons appear in the prev and next buttons. I have a span with cla

Re: [jquery-ui] Re: Datepicker - cant set minDate on second datepicker after choosing first date

2009-12-08 Thread Rafał Pocztarski
2009/12/7 Mestek Webmaster : > I just realized that if no date is selected it will crash, so you'll > want to change the onClose function to this: > > >                                                onClose: function() >                                                { >                          

[jquery-ui] Re: Problem in jQuery

2009-12-08 Thread Fabian Kaufmann
thanks for the reply. jquery picks every draggable object by a class. here the code for it: $('.draggable').draggable({ helper: 'clone' }); is there anything changed when i drop one of these at the droparea? or what do you meaning? -- You received this message because you are subscribed to the