Re: tooltip inside webMarkupContainer refreshing

2010-11-10 Thread taygolf
/tooltip-inside-webMarkupContainer-refreshing-tp3036878p3036965.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: tooltip inside webMarkupContainer refreshing

2010-11-10 Thread Sven Meier
Hi, apply the golden rule and "never pull out of a model to push into another one": AttributeModifier am1 = new AttributeModifier("title", true, new AbstractReadOnlyModel() { public String getObject() { KeyMemberData kmd = (KeyMemberData)item.getModelObject(); Employee emp = km

tooltip inside webMarkupContainer refreshing

2010-11-10 Thread taygolf
Label("kmname", new PropertyModel(item.getModel(), "name"))); kmlink.add(am1); kmlink.add(tt); item.add(kmlink); item.add(editmodal); }