Displaying 3 results from an estimated 3 matches for "secondcell".
Did you mean:
second_call
2005 Jul 18
1
fix for scriptaculous dragdrop.js empty list problem
...<li class=''sortListRow'' id="firstlist_firstlist1">Item 1 from first list.</li>
<li class=''sortListRow'' id="firstlist_firstlist2">Item 2 from first list.</li>
</ul>
</div>
</td>
<td id=''secondCell'' class=''sortlist'' width=''270'' valign=''top''>
<h3 class=''sortHeaderRow''>Selected</h3>
<div id=''firstCell'' style=''height:100%''>
<ul id="secondlist" st...
2005 Jul 19
0
quick dragdrop question
...ng 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","secondCell"],
onUpdate:selectItem
}
);
}
I set a breakpoint in selectItem, and play with the two lists...
2005 Jul 20
3
examples of drag n drop
...> 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","secondCell"],
> onUpdate:selectItem
> }
> );
> }
>
> I set a breakpoint in s...