ajaxOptionsArray.addObject(new AjaxOption("y", AjaxOption.NUMBER));
ajaxOptionsArray.addObject(new AjaxOption("zIndex", AjaxOption.NUMBER));
NSMutableDictionary options = AjaxOption.createAjaxOptionsDictionary(ajaxOptionsArray, component, _associations);
if (options.objectForKey("text") == null && hasChildrenElements()) {
WOResponse childrenResponse = WOApplication.application().createResponseInContext(context);
super.appendToResponse(childrenResponse, context);
String text = childrenResponse.contentString();
text = text.replaceAll("\"", """);
options.setObjectForKey("\"" + text + "\"", "text");
}
return options;