search for: endeffect

Displaying 13 results from an estimated 13 matches for "endeffect".

2006 Feb 03
3
overloading dragdrop.js
Hi everybody- First time poster, please be gentle. I have written a little rails app where you can create divs and move them around via Thomas'' wonderful dragdrop.js. I would like to be able to fire an AJAX event to update the top and left of the dragged object upon release. I see many AJAX link_to_remote and observe_field. What is the proper way to observe that the position (not
2006 Aug 18
1
Possible to ''Reset'' sortable?
...rop here 2] Now, on dragging [List 2] and dropping it on [Drop here 2] a certain action takes place. I then want [List 2] to return to its original location. However, it returns to the list below [List 4]. So, any ideas how I can get it to return? I have been messing around with starteffect: and endeffect: but haven''t been able to produce anything reliable. Thanks, Leon
2006 Jun 13
3
Weird flicker effect in IE6 (sortables)
...e.create'' and general JS source: http://www.bloxpress.org/demo/wp-content/themes/bloxpress2/system/javascript/bloxpress/bp_builder.js Any ideas? I already had to remove the hoverclass and ghosting because it was only worse. :( PS: Is there a way to stop "starteffect" and "endeffect" from within sortable.create? Best regards, Kjell _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2006 Jan 18
1
Dragable without the fade
How do I disable the fade or ghosting effect on my dragable?? I want it 100% opacity on drag. Thanks. ______________________________________________________________________ Alex Duffield . Principal . InControl Solutions . http:// www.incontrolsolutions.com _______________________________________________ Rails-spinoffs mailing list
2005 Jun 28
0
New beta of script.aculo.us
...t2 is deprecated, but works too) * Added Element.setContentZoom() function * Added expanded Effect.Highlight ("Yellow Fade Technique") to have user-defined colors and autodetecting the background color * Sortable.create passes the zindex, starteffect, reverteffect and endeffect options to the underlying Draggables * Sortable.serialize now honors the only option on Sortable.create * New overridable options on Draggables: zindex, starteffect, reverteffect, endeffect * Fix a Gecko engine flicker on Sortables in dragdrop.js * Fixed event.isLeftClick It...
2006 Aug 25
5
Dragging between DIVs with Prototype/script.aculo.us
...ally, my Draggables are inside a scrollable <div> element (the interface looks similar to iTunes or Outlook). My problem is that if I start to drag them, the "ghost" is also in this div, so I can''t drop it on a Droppable. I''ve tried messing with the starteffect and endeffect, temporarily moving the element from their containing <div> to document.body, but the main issue is that when I do this, I can''t restore the original state since I lose the Draggable''s position inside its scrollable <div> element. I figure somebody must have implement...
2006 Jan 13
1
Capturing the position of a draggable element
I would like to capture the position of a draggable element after it''s being dragged, but I am running into problem using several options, such as "change", "revert" and "onEnd". My callback handler would only fire when the page loads, and not when the element is dragged. How can I make this happen? <html> <head> <script
2006 Apr 30
1
Draggable - how start action on start dragging and end action on droppping
Hi all. I have got situation that I made element draggable - and when element is dragged I want to start some action (e.g. shown AJAX indicator, and change one of CSS class in dragging element). What is the best way to achieve this? I search source code of the Draggable and I saw that there is 2 method: Draggable.initDrag and Draggable.endDrag so it looks like in initDrag method i should
2006 Nov 24
1
sortable - after complete dropping element want to send ajax reqeust with id of elements: draggable and droppable
Hi all. I have specific situations - I use sortable on html list, and after I move elements I want to do ajax reqeust to serwer with the id of dragging element and id of the element that was droppable. How to do it? which function in Sortable class i have to overrider or modify? i try to modife onhover method in sortable and put a ajaxRequest call before methods dropon.parentNode.insertBefore
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...Draggables[eventName+'Count'] = Draggables.observers.select( @@ -218,7 +218,7 @@ var Draggables = { ).length; }); } -} +}; /*--------------------------------------------------------------------------*/ @@ -234,12 +234,12 @@ var Draggable = Class.create({ }, endeffect: function(element) { var toOpacity = Object.isNumber(element._opacity) ? element._opacity : 1.0; - new Effect.Opacity(element, {duration:0.2, from:0.7, to:toOpacity, + new Effect.Opacity(element, {duration:0.2, from:0.7, to:toOpacity, queue: {scope:'_draggable...
2006 Aug 07
8
Dropables problem on scroll bars
I have a droppable and draggable implementation. works pretty much well except when my droppables are on a scrollbar (created via overflow:auto) since my droppables are on a list. seems that the droppables aren''t working well with scrollbars and overflow. please help! thanks! _______________________________________________ Rails-spinoffs mailing list
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server
2006 Jun 15
12
Why such bad performance with IE ?
Regarding DragDrop I am wondering what the deal about Internet Explorer 6 is. My application is near to final and now while testing browsers all but the IE6 are running as supposed to. Any other browser is performing smooth movement while IE compared provides a very bad expirience. I''ve seen some "tuning" infos on this list but they are either outdated or not actually working