Please someone should tell me why i can deploy the Ajax examples in Wicket-examples and it runs fine in tomcat and when i repeat the same approach in my own application, the browser gives me error?
I have been fighting with these _javascript_ problem for some time but no much progress
please please guys what can be wrong....isnt it as basic as
add(new Label("a", "A"));
add(new AjaxLink("link") {
public void onClick(AjaxRequestTarget ajaxRequestTarget) {
Label b = new Label("a","B");
ajaxRequestTarget.addComponent
(b);
}
});
is there some configuration i am not putting in place?
