boolean hasOnClick = hasBinding(AWBindingNames.onClick);
boolean hasClientTrigger = hasBinding(_clientTriggerBinding);
if (hasOnClick || hasClientTrigger) {
AWResponse response = response();
response.appendContent(Constants.Space);
response.appendContent(Constants.OnMouseDown);
response.appendContent(Constants.Equals);
response.appendContent(Constants.Quote);
if (hasOnClick) {
response.appendContent(stringValueForBinding(AWBindingNames.onClick));
response.appendContent("return false;");