Re: Wicket and javascript
Sorry for not getting this totally.
If I do something like this
class Comp extends WebComponent implements ILinkListener{
public Comp(String id) {
super(id);
}
public String getCallbackURL(){
return urlFor( ILinkListener.INTERFACE ).toString();
}
public void onLinkClicked() {
// TODO Auto-generated method stub
}
}
Then how could I update it via AJAX?