We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
In several situations when you develop with wicket you need to integrate some javascript code. Here comes the JavascriptAppenderBehavior in play.
If you want to add this behavior to your page you can to this with the following examle:
add(JavascriptAppenderBehavior.builder().id("xy").javascript("alert('foo bar');").build());
this will add the given javascript code with the id 'xy' to your page and show a javascript alert dialog with content 'foo bar'.