<?xml version="1.0" encoding="UTF-8" ?>
<wicket:extend xmlns:wicket="http://wicket.apache.org">
This example demonstrates a AjaxFormComponentUpdatingBehavior.
Whenever the Make select box value is changed it will submit the new value to server via ajax and update the choices in the Model select box.
<br/><br/>
<form wicket:id="form">
<select wicket:id="makes"></select>
<select wicket:id="models"></select>
<input type="submit" wicket:id="go" value="Submit"/>
</form>
<div wicket:id="feedback"></div>
</wicket:extend>