Is there any reason why onComponentTag() wouldn't be invoked on a ListView:

ListView<User> users = new ListView<User>( "team-members", usersModel )
 {
@Override
protected void onComponentTag( ComponentTag tag )
 {
super.onComponentTag( tag );
int i = 0;
 }
...


I set a breakpoint on 'int i =0'; but its never hit - either on initial
page render or when the containing Panel is refreshed via Ajax. None of the
child behaviors attached to the ListView are triggered either (no
onComponentTag execution)
Wicket 6.14.0

N

Reply via email to