Re: [Wicket-user] Javascript behaviour

2006-07-14 Thread Mark Derricutt
What I have in my app is:    header.add(new AttributeModifier("onclick", true, new Model() {    public Object getObject() {    return "toggleVisibleDetails('" + activityDetailsPanel.getMarkupId() + "');";    }    }));and in the relevant html

[Wicket-user] Javascript behaviour

2006-07-14 Thread John Patterson
Hi, I need to add a behaviour to a link so that when it is clicked several other component are made visible. I could do this with an AJAX link but it seems that this might be better acheived with a simple bit of client side script. Is there any existing behaviour to to this sort of thing o