search for: firstlist

Displaying 8 results from an estimated 8 matches for "firstlist".

Did you mean: firstlast
2006 Mar 23
4
Implementing nested drag and drop using scriptaculous
Hi. I have gone through the scriptaculous wiki. I am trying to implement nested drag and drop but not able to do this. The situation is like this. _____________________________ | abc | => Box1Line1 | cde | => Box1Line2 | efg | => Box1Line3 | h | => Box1Line4
2006 Mar 28
0
Moving all items from one Scriptaculous box to another
...t_form_submit() { document.spt_main_form.spts.value= Sortable.sequence("secondlist").join("'' . ''_'' . ''"); return true; } // ]]> </script>''; (Following defines the two boxes, selectable ("firstlist") and selected ("secondlist") with the two buttons between them: * "choose_none" that is supposed to shuffle every item back to the "selectable" list and empty the "selected" list * "choose_all'' that is supposed to do the oppo...
2005 Jul 18
1
fix for scriptaculous dragdrop.js empty list problem
...html to support it: <td class=''sortlist'' width=''270'' valign=''top''> <h3 class=''sortHeaderRow''>Unselected</h3> <div id=''firstCell'' style=''height:100%''> <ul id="firstlist" style=''border:solid red 1px; height:100%''> <li class=''sortListRow'' id="firstlist_firstlist1">Item 1 from first list.</li> <li class=''sortListRow'' id="firstlist_firstlist2">Item 2 from first li...
2005 Jul 19
0
quick dragdrop question
..., and the target element that it''s being dropped onto (the UL). I''ve found the Sortables.create option for creating an onUpdate and onChange handler, and done the following: function selectItem(target){ window.status=target.id; } window.onload=function(){ Sortable.create("firstlist",{tag:''div'',containment:["firstlist","secondlist","firstCell","secondCell"]}); Sortable.create("secondlist", { tag:''div'', containment:["firstlist","secondlist","firstCell&...
2005 Jul 20
3
examples of drag n drop
...pped onto (the UL). I''ve found > the > Sortables.create option for creating an onUpdate and onChange handler, and > done > the following: > > function selectItem(target){ > window.status=target.id; > } > window.onload=function(){ > > Sortable.create("firstlist",{tag:''div'',containment:["firstlist","secondlist","firstCell","secondCell"]}); > Sortable.create("secondlist", > { tag:''div'', > containment:["firstlist","secondlist",&quo...
2010 Oct 27
2
Merge disparate lists
My two lists look like below Need an R code example that combines the two. l_one "key" 2 1 2 l_two "ndx", "descr" 1, "this" 2, "that" 3, "other" 4, "finis" My goal is a new list that looks like below. ndx descr 2 that 1 this 2 that Thanks, Jim
2006 May 19
6
Multiple dynamic Sortables
...he demo pages[2] (which doesn''t work in FF on Linux btw) mentions the following: The script tag that encloses the Sortable.create function calls needs to occur after all of the lists that you intend to use. IE.. in this example if you were place the "Sortable.create("firstlist"...);" call immediately after that list (and before the second list) you would only be able to drag from list 1 to list 2 and not from list 2 to list 1. If it helps, I''m not interested in dragging from one list to another. Just in re-ordering each list as its own entity....
2005 Oct 27
4
Nest sortables?
Hello All, I''m wondering if it''s possible to nest sortables: <ul id="first"> <li>One</li> <li>Two</li> <li> <ul id="second"> <li>Three</li> </ul> </li> <li>Four</li> </ul> <script> ... create sortables out of