InsertContentAfterAction action = new InsertContentAfterAction("toInsertAfter", new TaggedText(", Spring Modules user", TaggedText.Tag.SPAN));
// Disable the event:
SetAttributeAction disableAction = new SetAttributeAction("insertAfterButton", "onclick", "");
// Create a concrete ajax response:
AjaxResponse response = new AjaxResponseImpl();
// Add the actions:
response.addAction(action);
response.addAction(disableAction);
return response;
}