I am confused ,
I have an Item with a fragment .
to repaint this fragment I should just add this item to target and no need
of calling item.replaceWith(new Freagment()) ?
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/repaint-a-fragment-tp2990937p2991715.html
item.replaceWith(new Fragment()) will replace the *item* with the
*fragment*, which is definitely not what you want.
On Tue, Oct 12, 2010 at 6:57 AM, fachhoch fachh...@gmail.com wrote:
I am confused ,
I have an Item with a fragment .
to repaint this fragment I should just add this item to
No html is rendered to represent a fragment. You will have to wrap it
with a div and then refresh the div.
Scott
On Mon, Oct 11, 2010 at 5:06 PM, fachhoch fachh...@gmail.com wrote:
I have a fragment I want to repaint when user click on ajax link
here is my fragment
private class
you mean If I put this fragment inside a webmarkupcontainer and add this
webmarkupcontainer to target this will repaint my fragmnet ?
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/repaint-a-fragment-tp2990937p2991045.html
Sent from the Users forum mailing list
Exactly.
On Mon, Oct 11, 2010 at 7:24 PM, fachhoch fachh...@gmail.com wrote:
you mean If I put this fragment inside a webmarkupcontainer and add this
webmarkupcontainer to target this will repaint my fragmnet ?
--
View this message in context:
my fragment is inside a listitem ,on click I added this listitem to taget
nothing happened but if I call listitem.replace with new fragment it was
adding an additional div is ths the right way to repaint fragment ?
--
View this message in context:
On Mon, Oct 11, 2010 at 10:59 PM, fachhoch fachh...@gmail.com wrote:
my fragment is inside a listitem ,on click I added this listitem to taget
nothing happened but if I call listitem.replace with new fragment it was
adding an additional div is ths the right way to repaint fragment ?
You can