}
private void appendEventHandler (AWEncodedString eventName, AWEncodedString functionName,
AWEncodedString positioningElement)
{
AWResponse response = response();
AWEncodedString menuId = PopupMenu.menuId(this, _menuIdBinding, _indexBinding);
response.appendContent(Constants.Space);
response.appendContent(eventName);
response.appendContent(Constants.Equals);
response.appendContent(Constants.Quote);
response.appendContent(Constants.Return);
response.appendContent(Constants.Space);
response.appendContent(functionName);
response.appendContent(Constants.OpenParen);
response.appendContent(positioningElement);
response.appendContent(Constants.Comma);
response.appendContent(Constants.SingleQuote);
response.appendContent(menuId);
response.appendContent(Constants.SingleQuote);
response.appendContent(Constants.Comma);
response.appendContent(Constants.SingleQuote);
response.appendContent(_elementId);
response.appendContent(Constants.SingleQuote);
response.appendContent(Constants.Comma);
response.appendContent(Constants.Event);
response.appendContent(Constants.CloseParen);
response.appendContent(Constants.Semicolon);
response.appendContent(Constants.Quote);
}