Hi,<br><br>I&#39;m using Seaside 3.0a5 and I&#39;ve importe jQuery and jQueryUI<br><br clear="all">I&#39;m trying to do a drag &amp; drop effect like here : <a href="http://demo.seaside.st/javascript/jquery-ui/droppableinteraction" target="_blank">http://demo.seaside.st/javascript/jquery-ui/droppableinteraction</a><div style="display: inline; cursor: pointer; padding-right: 16px; width: 16px; height: 16px;">
 </div>
but there is some information missing. I can move my elements, I detect
when there are on the draggable zone but I don&#39;t find the method for
adding my element wich I am dropping in the draggable zone. On seaside website they use a callbackDroppable method but I do not have it.<br>
<br>I&#39;m doing this :<br><br>WAComponent subclass: #Test2<br>    instanceVariableNames: &#39;selected&#39;<br>    classVariableNames: &#39;&#39;<br>    poolDictionaries: &#39;&#39;<br>    category: &#39;visuel&#39;<br>

<br>Test2&gt;&gt;renderContentOn: html<br>    self dragzone:html .<br>    self dropzone:html.<br><br>Test2&gt;&gt;dragzone: html<br>    | maListe |<br>    maListe := Set new .<br>    maListe add: Composant new . &quot;here Composant is juste a string&quot;<br>

     html div class: &#39;inventory ui-corner-all drag&#39;; with: [ maListe do: [ :each | html div<br>         with: each] ] .<br><br>Test2&gt;&gt;dropzone: html<br>html div<br>      class: &#39;ui-droppable ui-corner-all drop&#39;;<br>

    script: (html jQuery new droppable<br>         onDrop: (html jQuery ajax callback:<br>                                            [ :event | self selected add: (event at: #draggable)  ] ;<br>                                        html: [ :r | self renderSelectedItemsOn: r ]));<br>

      with: [ self renderSelectedItemsOn: html ]<br><br>Test2&gt;&gt;renderSelectedItemsOn: html<br>     self selected do: [ :each |<br>      html div<br>         class: each;<br>         passenger: each;<br>         script: (html jQuery new draggable<br>

            onStop: (html jQuery this effect<br>               percent: 1; puff;<br>               onComplete: (html jQuery this parent load html: [ :r |<br>                  self selected remove: each ifAbsent: [ ].<br>
                  self renderSelectedItemsOn: r ]))) ]<br>
<br>Test2&gt;&gt;initialize<br>    super initialize.<br>    self selected: Set new<br><br>If
someone can help me with the drroppablezone method. I tryed a lots of
things, I searched on the Internet, on the source code but I didn&#39;t
find anything. <br>
<br>A. Cervoise<br>