?? tabletag.java
字號:
/**
* @jsp.attribute description="A fully qualified class name to a custom
* InterceptTable implementation. Could also be a named type
* in the preferences. Used to add table attributes."
* required="false" rtexprvalue="true"
*/
public void setInterceptor(String interceptor) {
this.interceptor = interceptor;
}
/**
* @jsp.attribute description="Reference the collection that will be retrieved."
* required="false" rtexprvalue="true"
*/
public void setItems(Object items) {
this.items = items;
}
public void setListHeight(String listHeight) {
this.listHeight = listHeight;
}
public void setListWidth(String listWidth) {
this.listWidth = listWidth;
}
/**
* @jsp.attribute description="The locale for this table.
* For example fr_FR is used for the French translation."
* required="false" rtexprvalue="true"
*/
public void setLocale(String locale) {
this.locale = locale;
}
public void setMaxRowsExported(String maxRowsExported) {
this.maxRowsExported = maxRowsExported;
}
/**
* @jsp.attribute description="Used to invoke the table action using a POST or GET."
* required="false" rtexprvalue="true"
*/
public void setMethod(String method) {
this.method = method;
}
public void setMinColWidth(String minColWidth) {
this.minColWidth = minColWidth;
}
public void setMinWidth(String minWidth) {
this.minWidth = minWidth;
}
public void setNearPageNum(String nearPageNum) {
this.nearPageNum = nearPageNum;
}
/**
* @jsp.attribute description="The javascript that will be invoked when a table action enabled."
* required="false" rtexprvalue="true"
*/
public void setOnInvokeAction(String onInvokeAction) {
this.onInvokeAction = onInvokeAction;
}
public void setPageSizeList(String pageSizeList) {
this.pageSizeList = pageSizeList;
}
public void setPaginationLocation(String paginationLocation) {
this.paginationLocation=paginationLocation;
this.toolbarLocation = paginationLocation;
}
public void setPdfFileName(String pdfFileName) {
this.pdfFileName = pdfFileName;
}
public void setResizeColWidth(String resizeColWidth) {
this.resizeColWidth = resizeColWidth;
}
/**
* @jsp.attribute description="A fully qualified class name to a custom
* RetrieveRowsCallback implementation. Could also be a named type
* in the preferences. Used to retrieve
* the Collection of Beans or Collection of Maps."
* required="false" rtexprvalue="true"
*/
public void setRetrieveRowsCallback(String retrieveRowsCallback) {
this.retrieveRowsCallback = retrieveRowsCallback;
}
/**
* @jsp.attribute description="The number of rows to display in the table."
* required="false" rtexprvalue="true"
*/
public void setRowsDisplayed(String rowsDisplayed) {
this.rowsDisplayed = rowsDisplayed;
}
/**
* @jsp.attribute description="The scope (page, request, session, or
* application) to find the Collection of beans or Collection of Maps
* defined by the collection attribute."
* required="false" rtexprvalue="true"
*/
public void setScope(String scope) {
this.scope = scope;
}
public void setScrollList(String scrollList) {
this.scrollList = scrollList;
}
public void setShowExports(String showExports) {
this.showExports = showExports;
}
public void setShowHeader(String showHeader) {
this.showHeader = showHeader;
}
public void setShowPrint(String showPrint) {
this.showPrint = showPrint;
}
/**
* @jsp.attribute description="Specify whether or not to show the title.
* Boolean value with the default being true."
* required="false" rtexprvalue="true"
*/
public void setShowTitle(String showTitle) {
this.showTitle = showTitle;
}
/**
* @jsp.attribute description="Specify whether or not to show the tooltips.
* Boolean value with the default being true."
* required="false" rtexprvalue="true"
*/
public void setShowTooltips(String showTooltips) {
this.showTooltips = showTooltips;
}
/**
* @jsp.attribute description="Specify whether or not the table is sortable.
* Boolean value with the default being true."
* required="false" rtexprvalue="true"
*/
public void setSortable(String sortable) {
this.sortable = sortable;
}
/**
* @jsp.attribute description="A fully qualified class name to a custom
* SortRowsCallback implementation. Could also be a named type
* in the preferences. Used to sort the Collection
* of Beans or Collection of Maps."
* required="false" rtexprvalue="true"
*/
public void setSortRowsCallback(String sortRowsCallback) {
this.sortRowsCallback = sortRowsCallback;
}
/**
* @jsp.attribute description="The table state to use when returning to a table.
* Acceptable values are default, notifyToDefault, persist, notifyToPersist."
* required="false" rtexprvalue="true"
*/
public void setState(String state) {
this.state = state;
}
/**
* @jsp.attribute description="The table attribute used to invoke the state change of the table."
* required="false" rtexprvalue="true"
*/
public void setStateAttr(String stateAttr) {
this.stateAttr = stateAttr;
}
/**
* @jsp.attribute description="The css inline style sheet." required="false"
* rtexprvalue="true"
*/
public void setStyle(String style) {
this.style = style;
}
/**
* @jsp.attribute description="The css class style sheet." required="false"
* rtexprvalue="true"
*/
public void setStyleClass(String styleClass) {
this.styleClass = styleClass;
}
/**
* @jsp.attribute description="The unique identifier for the table."
* required="false" rtexprvalue="true"
*/
public void setTableId(String tableId) {
// this.tableId = tableId;
setElementId(tableId);
}
/**
* @jsp.attribute description="The theme to style the table. The default is eXtremeTable."
* required="false" rtexprvalue="true"
*/
public void setTheme(String theme) {
this.theme = theme;
}
/**
* @jsp.attribute description="The title of the table. The title will
* display above the table." required="false"
* rtexprvalue="true"
*/
public void setTitle(String title) {
this.title = title;
}
public void setToolbarContent(String toolbarContent) {
this.toolbarContent = toolbarContent;
}
public void setToolbarLocation(String toolbarLocation) {
this.toolbarLocation = toolbarLocation;
}
/**
* @jsp.attribute description="The name of the variable to hold the current
* row bean." required="false" rtexprvalue="true"
*/
public void setVar(String var) {
this.var = var;
}
/**
* @jsp.attribute description="Generates the output. The default is the
* HtmlView to generate the HTML. Also used by the exports to
* generate XLS-FO, POI, and CSV." required="false"
* rtexprvalue="true"
*/
public void setView(String view) {
this.view = view;
}
/**
* @jsp.attribute description="Width of the table." required="false"
* rtexprvalue="true"
*/
public void setWidth(String width) {
this.width = width;
}
public void setXlsFileName(String xlsFileName) {
this.xlsFileName = xlsFileName;
}
public String getEvenRowBgColor() {
return evenRowBgColor;
}
public void setEvenRowBgColor(String evenRowBgColor) {
this.evenRowBgColor = evenRowBgColor;
}
public String getOddRowBgColor() {
return oddRowBgColor;
}
public void setOddRowBgColor(String oddRowBgColor) {
this.oddRowBgColor = oddRowBgColor;
}
public String getClassic() {
return classic;
}
public void setClassic(String classic) {
this.classic = classic;
}
public String getDoPreload() {
return doPreload;
}
public void setDoPreload(String doPreload) {
this.doPreload = doPreload;
}
public String getGenerateScript() {
return generateScript;
}
public void setGenerateScript(String generateScript) {
this.generateScript = generateScript;
}
public String getUseAjax() {
return useAjax;
}
public void setUseAjax(String useAjax) {
this.useAjax = useAjax;
}
public String getDeleteAction() {
return deleteAction;
}
public void setDeleteAction(String deleteAction) {
this.deleteAction = deleteAction;
}
public String getInsertAction() {
return insertAction;
}
public void setInsertAction(String insertAction) {
this.insertAction = insertAction;
}
public String getUpdateAction() {
return updateAction;
}
public void setUpdateAction(String updateAction) {
this.updateAction = updateAction;
}
public String getShowTooltips() {
return showTooltips;
}
public String getShadowRowAction() {
return shadowRowAction;
}
public void setShadowRowAction(String shadowRowAction) {
this.shadowRowAction = shadowRowAction;
}
public String getExcludeTool() {
return excludeTool;
}
public void setExcludeTool(String excludeTool) {
this.excludeTool = excludeTool;
}
public String getMinHeight() {
return minHeight;
}
public void setMinHeight(String minHeight) {
this.minHeight = minHeight;
}
public String getEnctype() {
return enctype;
}
public void setEnctype(String enctype) {
this.enctype = enctype;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -