Displaying 20 results from an estimated 6000 matches similar to: "drag&drop multi"
2006 Mar 30
4
possible scriptaculous bug
I have two sortable lists, one after the other. I can drag from the first
to the second but not from the second to the first. The behavior is
consistent if n > 2. For example, I can drag from 1 to 2, 3 or 4 from 2 to
3 or 4 and from 3 to 4, but not in the reverse order: I can''t drag from the
4th list to anything (besides itself). From the third list I can drag only
to itself and 4.
2006 Mar 30
3
Autocompleter
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
2006 Jan 23
7
Tooltips.js
Hi,
there already had been a Tooltips implementation [1] but i wasn''t to
happy with that one, not only because they didn''t support simple
mouse-hover tooltips (just as they appear when you are using title
attributes)
But writting this lib was also a good way to get into script.aculo.us
and prototype.js. (and i can''t say how impressed i am)
So here it is:
An all
2006 Mar 20
5
Sortabls onUpdate function
I have this code.
<script type="text/javascript">
Sortable.create(''orderable'', {onUpdate: doAlert});
function doAlert() {
alert("Hello");
}
</script>
But when I move an item it doesn''t fire the doAlert command, am I
missing something?
2006 Jun 20
10
Next script.aculo.us release, help needed
Hey there!
I''m in the process of looking through the various bug reports and
tickets and
fixing script.aculo.us as I go along.
As I want a 1.6.2 bugfix release to happen this week, please help me
out with:
- Looking throught the open bugs list on the trac, testing stuff and
giving helpful comments (like "+1")
- Identifiying what bugs/patches should be included (answer to
2005 Aug 10
1
overflow and drag&drop?
All,
I''m creating a palette type UI where the user sees a div on the right
of the screen with various items they can drag to the center area. So
far, I''m using the drag & drop calls and this works perfectly. I''ve
run into a problem now because I gave the div an overflow setting and
fixed height so if the palette list gets long it won''t stretch out the
page:
2006 Jan 12
6
Draggable performance issues
Using the script.aculo.us Draggables, I''m noticing they are a bit less
than fast. I drag them around on the screen and they jump and glitch to
catch up with the mouse.
Has anyone else noticed this, and are there any optimizations that have
been identified that I can apply? I''m using v. 1.5
Sincerely,
Ryan Gahl
Design Engineer
Camtronics Medical Systems (an Emageon
2006 Feb 08
2
Tooltip.js problems
I''m starting to play with the tooltip.js library from
http://tooltip.crtx.org/index.php?page=HomePage. The libarary seems to
work pretty well except that when I use a tooltip on a web page that has a
form and submit buttons, the submit buttons stop functioning and won''t
respond to click events anylonger. So far I''ve only been able to
reproduce this under Safari.
2006 Mar 17
6
Updated the xml code to be more object-oriented
I changed the code to be more prototype-esque, and created a class
called XMLDoc. I may add more functionality to it later, hence the more
generic name, but you do something like this to convert XML to a hash:
XMLDoc = Class.create();
Object.extend(XMLDoc.prototype, {
initialize: function (xmlDoc) {
this.element = xmlDoc;
},
asHash: function () {
if (! this._xmlHash) {
2006 Mar 23
4
XML parser fixed
Hi, I changed the XML parser who have been write by Greg (Gregory Hill)
and changed some things.
It did not work in IE and Safari and opera.
I fixed some bugs. Now it works fine in IE, Safari, Firefox and Opera.
/* --------------------------------------- */
XMLParser = Class.create();
Object.extend(XMLParser.prototype,
{
initialize: function (XMLFile, options)
{
2005 Dec 06
9
script.aculo.us AutoComplete Woes
I was wondering if someone could help me with an autocomplete problem. I
have the autocomplete div receiving a <UL> that looks like:
<ul>
<li>Name<br>Email</li>
</ul>
When the user hits enter and the value is filled into the text field
it''s putting both the name and email in the field. I just want the name.
Funny this works in Firefox but not IE. I
2006 Jan 29
2
Questions about Sortable javascript
Hi,
I''ve been playing with sortable, the demos on script.aculo.us and
reading the javascript. I hope I''m not just missing the documentation
somewhere but I can''t find it. I want to do something like Sortable
for the admin side of an open source ecommerce project I''m working on
[1]. I''m relatively new to DHTML but understand the basic ideas. If
someone
2006 May 05
7
Problem with autocomplete
Hello,
I''m using scriptaculous library (in symfony) v. 1.6.1
Great library !!!!!
I have a problem.
While in IE6 it''s all ok (the autocomplete field works perfectly) in FF
1.5.0.2 the field apparently isn''t working. If I try the example in the
scriptaculous homepage (v. 1.4.0_pre4 of Prototype) doesn''t work with
FF, while the simple online demo, that uses
2006 Jan 06
3
Gianni
|Hi i''m New
First Question:
to use a script.aculo.us it needs to include prototype.js and
scriptaculous.js.... but doesn''t work!!;
instead ||using ||scriptaculous.shrunk of Alister Cameron, work;
what are the expedient to use to include the ||scriptaculous.js ?
Second question:
in script.aculo.us |Ajax.Autocompleter
2006 May 20
10
Changing the height of LI elements to achieve such an effect?
Hi Everybody,
I was wondering if there is such a work done with Scriptaculous/Prototype
before and if not how to achieve it?
Example : http://www.anatolip.com/
It is done with codes borrowed from moofx and his own codes.
Thanks in advance
Danial
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2006 Feb 13
8
Netvibes.com / Scriptaculous
Hi list,
Is it possible to create a "dashboard" type application, like
Netvibes.com, w/ script.aculo.us?
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2005 Oct 26
2
Troubleshooting inplace editor
I can''t get the inplace editor to do anything for me. The output appears as
regular formated, unclickable text. Maybe I am missing something simple.
1. I just downloaded script.aculo.us <http://script.aculo.us> 1.5_rc3 and
copied it to my javascript folder.
2. To set up a simple test, I created a new test page containing only the
copied from demo1 from the script.aculo.us
2005 Sep 16
4
Autocompleter handling multiple completes
Has anyone extended the Autocompleter to do multiple auto-completes in a
single input field? I''m looking to achieve similar functionality to the
del.icio.us <http://del.icio.us> post page which allows multiple
auto-completes of tag names in the tags input field.
cheers,
Rob
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2005 Aug 11
7
script.aculo.us V1.5_pre1 released
Heya,
I''ve just released script.aculo.us V1.5_pre1.
Please give it a try!
Important new stuff (since V1.1b1):
* Added a main scriptaculous.js file to load in the other libraries
transparently.
* Fixed a condition where standard a href=xxx links wouldn''t work in
autocomplete results. These do now, the onclick event is not
cancelled. [thx to Jasper Slits]
* Added
2006 Jun 16
6
Drag and Drop work in IE?
Please,
I''m build an drag and drop tree using scriptaculous and it is perfect in
FF but when I test in IE don''t work, I drag the element and when I free
the button the element don''t go to the place, stay in the mouse pointer...
What can do it happen? I''m using last version of scriptaculous.
Thank you,
Pedro