That seems to fix the issue with IE, but it also seems to adversely affect the performance in Firefox... have you noticed any performance issues with that patch & Firefox, also?
On 3/30/06, Thomas Fuchs <[EMAIL PROTECTED]> wrote:
See http://dev.rubyonrails.org/ticket/4465There's a resolution/patch
See http://dev.rubyonrails.org/ticket/4465
There's a resolution/patch to prototype.js at
http://dev.rubyonrails.org/changeset/4094
-Thomas
Am 30.03.2006 um 08:11 schrieb Jim Geurts:
I can confirm this... Specifically I'm seeing issues with the $$
function.
This simple code thrashes IE. Th
I can confirm this... Specifically I'm seeing issues with the $$ function. This simple code thrashes IE. The cpu goes to 100% and I can watch IE consume ram... $$('.Grid_ItemRow').each(function(element, index) {
Event.observe(element, 'mouseover', function() { element.className='Grid_ItemR
On Wednesday 29 March 2006 18:04, Todd Ross wrote:
> On 3/29/06, Jeremy Kitchen <[EMAIL PROTECTED]> wrote:
> > On Wednesday 29 March 2006 12:59, Aaron Meier wrote:
> > > I'm using this on a secure site, and in IE, when the 'new Dialog' is
> > > called, it tells me "This site contains both secure an
My enclosing div has a position: absolute; on it (along with left, top and width settings)...I set it to relative and still got the oddness. Maybe it's just my machine.On 3/29/06,
Jerod Venema <[EMAIL PROTECTED]> wrote:
Yeah, no kidding, cause it works for me :).Only other thing I have is a 3rd d
If you can post an actual link, I'll take a lookOn 3/29/06, Jerod Venema <[EMAIL PROTECTED]> wrote:
Yeah, no kidding, cause it works for me :).Only other thing I have is a 3rd div around the whole thing, with a position: relative on it.
-JerodOn 3/29/06,
Curtis Edmond <[EMAIL PROTECTED]> wrot
Yeah, no kidding, cause it works for me :).Only other thing I have is a 3rd div around the whole thing, with a position: relative on it.-JerodOn 3/29/06,
Curtis Edmond <[EMAIL PROTECTED]> wrote:
Tried it and got the same flakiness. Odd aint it?On 3/29/06,
Jerod Venema <[EMAIL PROTECTED]> wrote:
T
On 3/29/06, Jeremy Kitchen <[EMAIL PROTECTED]> wrote:
> On Wednesday 29 March 2006 12:59, Aaron Meier wrote:
> > I'm using this on a secure site, and in IE, when the 'new Dialog' is
> > called, it tells me "This site contains both secure and nonsecure items."
> > I've tried creating the dialog elem
Tried it and got the same flakiness. Odd aint it?On 3/29/06, Jerod Venema <[EMAIL PROTECTED]> wrote:
Try this:Click here for directions
http://maps.google.com/maps" method="get"> Where are you coming from?
On 3/29/06, Curtis Edmond <[EMAIL PROTECTED]
> wrote:Sorry it
The behaviour you're seeing is a result of the opacity being applied to the Draggable elements via the startEffect (line 191 of dragdrop.js in v1.5). I saw similar behaviour a long time ago, but I haven't seen it recently. At the time, I disabled the starteffect in the sortable completely (pass {st
What is the best way to show that Autocompleter is searching for the
dropdown list. It is taking several seconds to load the list
deco
___
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/r
Hi, I tried using v1.6.0 of the scriptaculous libraries
(including latest prototype library) in one of my existing apps that uses the
1.5.1 version, and found that IE 6 was very unstable. Actions get slower and
slower over time until the page is basically unusable. This continues until the
Check out this code:http://www.net4visions.com/dev/dialog/dialog.htmhttp://www.net4visions.com/dev/downloads/dialog.zip
for a sample application of creating resizable rectangles.-JerodOn 3/25/06, Abdullah Jibaly <
[EMAIL PROTECTED]> wrote:Hi all,I'm trying to create a sort of timesheet similar to o
Try this:
http://maps.google.com/maps" method="get"> Where are you coming from?
On 3/29/06, Curtis Edmond <[EMAIL PROTECTED]
> wrote:Sorry it took me so long...here's my code. Is there some param I pass to have it blindup/down from 1 to 99? I believe the display prope
On Wednesday 29 March 2006 12:59, Aaron Meier wrote:
> I'm using this on a secure site, and in IE, when the 'new Dialog' is
> called, it tells me "This site contains both secure and nonsecure items."
> I've tried creating the dialog element ahead of time, but that didn't help.
> Any suggestions?
What license is this released under?MattOn 3/2/06, Marco M. Jaeger <[EMAIL PROTECTED]> wrote:
The dialog script has been updated – thanks to Jerod
we were able to add themes – please see changelog for further details and
fixes.
The latest version can be downloaded from here:
http:
I'm using this on a secure site, and in IE, when the 'new Dialog' is called, it tells me "This site contains both secure and nonsecure items." I've tried creating the dialog element ahead of time, but that didn't help. Any suggestions?
On 3/3/06, Jerod Venema <[EMAIL PROTECTED]> wrote:
Sorry, we'
Using parentNode will only work when your draggable is a direct
descendant of the container... that will fail you as soon as you try any
layout more complicated than that (nested containers, tables, etc...)
The information transmitted in this electronic mail is intended only for the
person or enti
Nevermind...
For some reason I always miss the obvious.
I needed element.parentNode.id as in:
Droppables.add('myDropB',
{
accept
When you define you draggable object, assign a member variable to it
that stores info about the parent...
var myDraggable = new Draggable(...);
myDraggable.parentDiv = $('myDropA');
Then when it gets dropped, you can see where it came from simply by
accessing the parentDiv property. Expandos are
I am not sure how many of you are using draggables/droppables but I
thought I would do some experimentation and try and learn how to use
them on my own.
Well, I have draggables, and I have droppables.
I do have one question for now.
The droppable onDrop event seems to pass in 2 objects, the
Hi all,
I just tried the latest version and saw that parts of my page stopped
working. I debugged some and found out that the error is somewhere in
the effects.js file. Cause if I upload the older effects.js with the
latest files then it all works. I also found out that the 'new
Draggable(..'
i guess you are right: the dropable should be the place where to check
the keypress-event.
but isn't there a built-in functionality for that in script.aculo.us?
i'd prefer using just the standard library rather than extending it with
my own javascript stuff...
David Zülke wrote:
> why don't y
why don't you just check for the key in the ondrop event
Am 29.03.2006 um 14:28 schrieb Johannes Goerz:
Hi!
is it possible to make a drag dependent on a KeyPress event? I
couldn't
find any information on that on the script.aculo.us website.
My scenario is the following:
I have a tree with
Sorry it took me so long...here's my code. Is there some param I pass to have it blindup/down from 1 to 99? I believe the display property gives it "layout". Anything else I can try to get rid of the flakiness?
directions
http://maps.google.com/maps" method="get"> Where are yo
Hi!
is it possible to make a drag dependent on a KeyPress event? I couldn't
find any information on that on the script.aculo.us website.
My scenario is the following:
I have a tree with several nodes (like windows explorer). Right now i
use Drag & Drop to move a node below a new parent.
Now i
Hi all,
Iäve built some functionality in a CMS where you can drag and drop
small elements on the page between 2+ panes/containers/divs. Whenever
a drag-drop event has occurred (onUpdate) I make a Ajax.Request to
save the new layout in the CMS.
The code is as follows:
in an onload-function:
var a
27 matches
Mail list logo