Don't know if it is the same issue but I have found  the same problem a
while ago (refreshing a component via Ajax) and the problem was
scriptaculous requires to clean up the Droppables  if an element was
removed from the DOM tree. So, all I did was add a a clearAll
(JavaScript) method  that delete all the Droppables. something like

var Droppables = {
  drops: [],

  removeAll: function(element) {
    this.drops = [];
  },

......  

and then call it before any Ajax request that recreated the DOM tree. So
that I could safely recreated my component and make them droppables
again. This worked fine for IE7. For Firefox I never found those
problems... There was a note on the web page explaining Droppables that
suggested this idea...

Hope this helps...

Best,

Ernesto   

Lan Boon Ping wrote:
> Hi,
>
> I have encountered a DragNDrop problem using wicketStuff-scriptaculous
> in IE6/IE7. The DragNDrop only work for the first time, but
> subsequently, the draggable object is no longer draggable. FYI, this
> problem doesn't exist in Firefox and it can be reproduced in
> wicket-contrib-scriptaculous-examples.
>
> Any hints?
>
> Thanks in advance.
>
> Regards
> Boon Ping.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>   


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to