return null;
}
protected void defaultKeyDownAction ()
{
AWResponse response = response();
response.appendContent(Constants.Return);
response.appendContent(Constants.Space);
response.appendContent(PopupMenu.MenuKeyDownFunctionName);
response.appendContent(Constants.OpenParen);
response.appendContent(Constants.This);
response.appendContent(Constants.Comma);
response.appendContent(Constants.SingleQuote);
response.appendContent(_elementId);
response.appendContent(Constants.SingleQuote);
response.appendContent(Constants.Comma);
if (submitForm()) {
response.appendContent(Constants.SingleQuote);
response.appendContent(requestContext().currentForm().formName());
response.appendContent(Constants.SingleQuote);
}
else {
response.appendContent(Constants.Null);
}
response.appendContent(Constants.Comma);
response.appendContent(Constants.Event);
response.appendContent(Constants.CloseParen);
response.appendContent(Constants.Semicolon);
}