Here is what I am using the follow pattern to set up ID for a wicket component:
Label abc = new Label("abcd", "abcdedfg");
abc.setOutputMarkupId(true).setMarkupId(abc.getId());
It takes two lines to do this.
Can I do something like
Label abc = new Label("abcd",
"abcdedfg").setOutputMarkupId(true).setMarkupId(???);
Is this doable? If yes, then what should go to replace ???
Thanks!
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]