Hi there,
there are a couple of things you have to change directly in the script, but
unfortunately
I can't help you much with that. The best idea is to have a look at the
rotate function in
the script, and figure out yourself.
Hope this helps a bit,
Paul
On Wed, Nov 19, 2008 at 3:14 AM, Raine <
The menu plugin has been moved to its own dev branch
http://jquery-ui.googlecode.com/svn/branches/dev/menu/
- Richard
On Fri, Nov 14, 2008 at 3:56 PM, yvonney <[EMAIL PROTECTED]> wrote:
>
> Nice! I will certainly be keeping my eyes open Appreciate the
> thought about posting update here tho
hey richard!
That is awesome to hear. If you need a beta tester, sign me up!
I overpromised on the patch... I thought I got it around the _getInst
function, but I kept missing edge cases and now it looks gowd-awful.
Earlier an user mentioned turning it off and then turning it back on
for all th
Thanks for reporting it. It has already been fixed in 1.6rc2. The docs demos
point to the latest stable release (1.5.2) so won't be updated until
1.6final.
- Richard
On Tue, Nov 18, 2008 at 7:59 PM, Jimbo M <[EMAIL PROTECTED]> wrote:
>
> Even bigger than that, look at page:
>
> http://docs.jquer
Hi Paul,
1. If I were to changed the total width of the carousel, which variables
should I change? It looks like this is affected by both the settings in css
and js?
2. If I want to change the max width of each image, where should I change?
I tried to start at this line first:
var inst = new $.u
Even bigger than that, look at page:
http://docs.jquery.com/UI/Datepicker
In both examples, there are two November 2!
On Nov 17, 12:54 am, Nicolas <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I have found an important bug in the datepicker component. When
> "Sunday" is the first day of week displaye
It also fails in IE8b2 standards and emulation mode with two
javascript errors:
Line: 130228572
Error: 'customRange' is undefined
Line: 130228572
Error: 'readLinked' is undefined
On Nov 17, 5:56 am, jui-query <[EMAIL PROTECTED]> wrote:
> I suppose the UI datepicker page
>
> http://ui.jquery.com
Datepicker is being heavily refactored to address issues like this. It's
more like a rewrite. Since it's not clear how long that might take, a patch
for the current version is always welcome. Thanks.
- Richard
On Tue, Nov 18, 2008 at 1:09 PM, Adam Greene <[EMAIL PROTECTED]> wrote:
>
> hey folks,
This is fixed in 1.6rc2 (see http://ui.jquery.com/bugs/changeset/635 ) so
I'll assume you're using 1.5.2. Here's a workaround for that version. Add
open: function() {
$(document).unbind('keydown.dialog-overlay');
}
to your dialog options.
- Richard
On Tue, Nov 18, 2008 at 2:15 PM, Jerônimo Fa
Specifically, the visibility value for the is changing to hidden.
On Nov 18, 1:45 pm, hcovitz <[EMAIL PROTECTED]> wrote:
> Update/Clarification: unlike the post I linked to, my problem does
> not seem to be the PADDING. I set the padding to 0 and I still get
> the behavior (in IE) where if yo
Update/Clarification: unlike the post I linked to, my problem does
not seem to be the PADDING. I set the padding to 0 and I still get
the behavior (in IE) where if you drag and element and quickly click
its border, it is possible to make the element (in this case, an )
disappear.
On Nov 18, 1:
Thanks. I added some padding and it helped. However, I've now run
into this issue documented here, where the whole div can disappear if
clicked in the area where there is padding during the drag/drop:
http://groups.google.com/group/jquery-ui/browse_thread/thread/42ef10364cab8028
Please let me
Hi Klaus and Others, Any thought on this problem?
On Mon, Nov 17, 2008 at 12:58 PM, Raghu <[EMAIL PROTECTED]> wrote:
> Hello,
> I am using Jquery UI tab panel script..one of the tab loads its content
> with ajax. This remote page has table that uses Jquery Pagination script...
> Now issue is wher
I have a checkbox that disables or enables the datepicker according to
whether it is checked. When it is unchecked, I would like it to first
clear the date from the datepicker input before it disables it. How
can I do this?
Thanks
Mike
--~--~-~--~~~---~--~~
You re
Did not worked for me. :-(
Here is the object with options:
var DIALOG_COMMON_OPTIONS = {//Common options for dialog windows.
autoOpen: false,
modal: true,
stack: true,
closeOnEscape: false
};
Any idea?
2008/11/18 MATT CARBONE <[EMAIL PROTECTED]>
> Se
This list is dedicated to discussion of jQuery UI plugins[*]. Please direct
general jQuery questions to the main list:
http://groups.google.com/group/jquery-en
- Richard
[*] http://rdworth.org/blog/2008/10/jquery-plugins-and-jquery-ui/
On Tue, Nov 18, 2008 at 12:58 PM, sandeep <[EMAIL PROTECTED
This list is dedicated to discussion of jQuery UI plugins[*]. Please direct
general jQuery questions to the main list:
http://groups.google.com/group/jquery-en
- Richard
[*] http://rdworth.org/blog/2008/10/jquery-plugins-and-jquery-ui/
On Tue, Nov 18, 2008 at 11:57 AM, [EMAIL PROTECTED] <
[EMAI
hello out there,
i got some problem using jquery slider with ie6 / 7 by onclick actions
before dragging the slider;
in firefox (like almost) everything is fine:
I init a slider like this:
$("#DOMID”).slider({slide:actualNewsboxHeight,change:function(){}});
I got 2 buttons, to move the slider
Hi,
I'm using a modal dialog, with no close button. This is for block the
user to close it.
But pressing the Escape button, the dialog closes anyway.
How do I precent Esape button of closes the dialog?
--~--~-~--~~~---~--~~
You received this message because you ar
Set the closeOnEscape option to false
ex:
$("#blah").dialog({closeOnEscape: false});
On Tue, Nov 18, 2008 at 1:39 PM, Jerônimo Fagundes da Silva <
[EMAIL PROTECTED]> wrote:
> Read "prevent" where I wrote "precent".
>
> 2008/11/18 Jerônimo <[EMAIL PROTECTED]>
>
>> Hi,
>>
>> I'm using a modal dia
Read "prevent" where I wrote "precent".
2008/11/18 Jerônimo <[EMAIL PROTECTED]>
> Hi,
>
> I'm using a modal dialog, with no close button. This is for block the
> user to close it.
> But pressing the Escape button, the dialog closes anyway.
> How do I precent Esape button of closes the dialog?
>
Helo,
Something like the following works for me:
$("#child").draggable({ drag: function(ev, ui) { var top =
ui.position.top; var left = ui.position.left; /* do something
*/ } });
The docs outline this here:
http://docs.jquery.com/UI/Draggables/draggable#options
Best.
On Nov 18, 7:37 am, di
Hello,
I have a requirement wherein the UI needs dynamic addition of
records into a list. Basically the requirement is something like
this http://devblog.jasonhuck.com/assets/infiniteformrows.html
But this is not index based, rather it is just navigating the dom by
parent reference.
However I
Hello there and thanks for looking
I'm trying to use the jquery UI drag and drop functionality.
I've downloaded jquery 1.2.6 as well as the UI personalized bundle.
When I try to drag an image into a , a new tab opens up in IE 7
instead of dropping into the 'droppable' I've defined.
Anyone
Okay I'm sure this is simple, but I'm have trouble.
Here's the code. 1 XHTML with a button, 1 PHP script that loads a form
into a div, 1 JS file that implements jQuery to do everything.
index.html
--
http://jquery.com/src/jquery-latest.js";>
out
hey folks,
it seems like this has come up in two different exchanges over the
past 12 months. I ran into this issue as well, where using a deep
clone (el.clone(true)) doesn't work for datepicker. The issue seems
to be the use of $.data to store a jquery instance for a given
input.
The problem
So, maybe there is some other way to autosize it after open?
On 18 нояб, 17:07, "Richard D. Worth" <[EMAIL PROTECTED]> wrote:
> Not currently. You have to specify width and height as integer pixel values.
>
> - Richard
>
> On Tue, Nov 18, 2008 at 3:55 AM, LM <[EMAIL PROTECTED]> wrote:
>
> > Hello
Hi there,
the good news is that you don't need to make them draggable - only apply
the sortables, and the items can be dropped on droppables automatically.
That means, if you have a sortable list with li's, simply create the
droppables with
the accept option set to 'li' for example.
Cheers,
Paul
This is because of the overflow: hidden you have set for #global. During the
resize, it has no height as you've got position: absolute for everything
inside it.
- Richard
On Tue, Nov 18, 2008 at 4:32 AM, garthos <[EMAIL PROTECTED]> wrote:
>
> it works !!! but now i have a little problem on IE
>
Not currently. You have to specify width and height as integer pixel values.
- Richard
On Tue, Nov 18, 2008 at 3:55 AM, LM <[EMAIL PROTECTED]> wrote:
>
> Hello.
> Is there a way to enable jQuery UI dialog to automatically size it's
> bounding box based on displayed content (aka autosize)?
>
> >
This list is specific to jQuery UI plugins. Please post this on the
main jQuery list.
On Nov 17, 8:16 pm, Bhavin <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am using JQuery with Struts 1.1. I am using following code when user
> clicks on Save button:
>
> $('#save').click(function() {
> $.
Hello.
Is there a way to enable jQuery UI dialog to automatically size it's
bounding box based on displayed content (aka autosize)?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this g
I open the demo index.html and i saw tags like below
i cannot find any element ie5, ie7 associate with anything css ,js
file.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this g
hello,
i have a parent and a child div in it.
i just want to use a function whenever my child div is dragged, i get
the position of it (relative to the parent div). so if the child is on
the left edge it should be 0 but in my case i get the whitespace of
the browser added to it. so it's not the po
34 matches
Mail list logo