Methods Summary |
---|
protected void | evaluateExtraParams()
super.evaluateExtraParams();
if(selectedTab != null)
addParameter("selectedTab", findString(selectedTab));
if(closeButton != null)
addParameter("closeButton", findString(closeButton));
addParameter("doLayout", doLayout != null ? findValue(doLayout, Boolean.class) : Boolean.FALSE);
if(labelPosition != null) {
//dojo has some weird name for label positions
if(labelPosition.equalsIgnoreCase("left"))
labelPosition = "left-h";
if(labelPosition.equalsIgnoreCase("right"))
labelPosition = "right-h";
addParameter("labelPosition", null);
addParameter("labelPosition", labelPosition);
}
if(templateCssPath != null)
addParameter("templateCssPath", findString(templateCssPath));
|
public java.lang.String | getComponentName()
return COMPONENT_NAME;
|
public java.lang.String | getDefaultOpenTemplate()
return TEMPLATE;
|
protected java.lang.String | getDefaultTemplate()
return TEMPLATE_CLOSE;
|
public void | setCloseButton(java.lang.String closeButton)
this.closeButton = closeButton;
|
public void | setDoLayout(java.lang.String doLayout)
this.doLayout = doLayout;
|
public void | setId(java.lang.String id)
// This is required to override tld generation attributes to required=true
super.setId(id);
|
public void | setSelectedTab(java.lang.String selectedTab)
this.selectedTab = selectedTab;
|
public void | setTemplateCssPath(java.lang.String templateCssPath)
this.templateCssPath = templateCssPath;
|