« Return to Thread: Wicket and javascript

Re: Wicket and javascript

by Mathias Nilsson :: Rate this Message:

Reply to Author | View in Thread

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?

 « Return to Thread: Wicket and javascript