Hi Dan,

only a shot in the dark - but is your markup valid? validate with w3c.

PS: Is it required to add the ending slash?

Cheers
Per
Thanks for answer.
Yes, in the first "td" is "span" but in this forum it was formatted and span
was not visible.
The first td should be:<td><  span wicket:id="aaa" class="aaa">www</td>
------

But I make little modification and html is:
                <table>
                        <tr>
                                <td><  span wicket:id="aaa" class="aaa">aaa</td>
                                <td><  span wicket:id="bbb" class="bbb">bbb</td>
                                <td><  span wicket:id="ccc" class="ccc">ccc</td>
                        </tr>
                </table>

And in java class was added:
                Label bbb = new Label("bbb", "bbb");
                Label ccc = new Label("ccc", "ccc");
                bbb.setOutputMarkupId(true);
                ccc.setOutputMarkupId(true);
                container.add(bbb);
                container.add(ccc);



But in the methods is transfer.getData() allways NULL. What should be in
transfer? The target element? Is there any way how to know what element was
targeted (drop)?

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/help-with-drag-and-drop-wicket-dnd-tp4422338p4422742.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
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