return response;
}
public AjaxResponse removeElement(AjaxActionEvent event) {
// Create an ajax action for removing the element:
RemoveElementAction action = new RemoveElementAction("toRemove");
// Create a concrete ajax response:
AjaxResponse response = new AjaxResponseImpl();
// Add the action:
response.addAction(action);