亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? tabletag.java

?? ecside jsp前途分頁的標簽 實現ajax 增刪改查等
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
	/**
     * @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 + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91在线视频免费观看| 成人毛片视频在线观看| 中文字幕一区二区三区乱码在线 | 波多野结衣一区二区三区 | 国产精品综合av一区二区国产馆| 亚洲综合丝袜美腿| 亚洲视频免费在线观看| 中文字幕国产一区| 中文字幕在线一区| 亚洲欧美日韩系列| 一区二区三区欧美日| 亚洲主播在线观看| 亚洲综合一二三区| 日韩制服丝袜先锋影音| 性久久久久久久久久久久| 亚洲第一精品在线| 日韩高清在线电影| 极品少妇xxxx精品少妇| 国产一区二区三区日韩| 国产suv一区二区三区88区| 国产成人激情av| 成人av网在线| 91精彩视频在线| 欧美日韩不卡视频| 精品女同一区二区| 国产视频视频一区| 亚洲精品成人精品456| 亚洲一区二区在线播放相泽| 午夜视频在线观看一区二区三区 | 久久国产精品72免费观看| 狠狠色综合色综合网络| 成人免费视频一区| 在线亚洲人成电影网站色www| 欧美日韩亚洲高清一区二区| 日韩精品自拍偷拍| 专区另类欧美日韩| 视频一区欧美日韩| 国产麻豆精品95视频| 91浏览器在线视频| 欧美大胆一级视频| 国产欧美日韩视频一区二区 | 欧美精品在线观看播放| 精品日韩在线一区| 亚洲国产日韩在线一区模特| 久久精品国产精品亚洲精品| 91蜜桃在线观看| 精品日韩一区二区三区| 一区二区三区四区不卡在线 | 中文字幕日韩av资源站| 日欧美一区二区| 成人avav影音| 精品欧美一区二区三区精品久久| 亚洲男人的天堂网| 国产风韵犹存在线视精品| 欧美三级视频在线播放| 国产精品―色哟哟| 久久99精品国产.久久久久久| 色猫猫国产区一区二在线视频| 久久久久久久久久久久电影| 午夜亚洲福利老司机| 99精品偷自拍| 国产午夜亚洲精品午夜鲁丝片 | 91麻豆精品国产91久久久久久久久 | 欧美一级理论性理论a| 国产精品美女久久久久久久久 | 日本网站在线观看一区二区三区 | 美女视频第一区二区三区免费观看网站| 成人动漫一区二区在线| 精品国一区二区三区| 午夜精品福利一区二区蜜股av| 99精品一区二区三区| 国产女人水真多18毛片18精品视频 | 在线免费观看日本欧美| 国产精品免费aⅴ片在线观看| 国产伦精一区二区三区| 精品理论电影在线| 久久精品国产99国产| 欧美一区二区在线播放| 亚洲国产精品影院| 欧美日韩一区高清| 亚洲午夜电影在线观看| 在线观看91精品国产入口| 亚洲美女一区二区三区| 色狠狠av一区二区三区| 亚洲欧美日韩国产中文在线| 色噜噜久久综合| 亚洲一区二区三区视频在线播放| 色综合久久综合中文综合网| 亚洲欧洲日产国码二区| a亚洲天堂av| 亚洲男人的天堂一区二区| 在线视频综合导航| 亚洲成人动漫av| 欧美大片国产精品| 国产在线一区观看| 国产精品美女久久久久aⅴ国产馆| 国产成人亚洲综合a∨婷婷| 欧美激情中文字幕| av亚洲精华国产精华精华| 一区二区三区欧美久久| 欧美乱熟臀69xxxxxx| 日本怡春院一区二区| 久久久青草青青国产亚洲免观| 成人黄色av电影| 亚洲乱码国产乱码精品精的特点 | 91精品国产品国语在线不卡| 另类小说图片综合网| 国产夜色精品一区二区av| 成人黄色大片在线观看| 亚洲成人av福利| 精品盗摄一区二区三区| 成人黄动漫网站免费app| 亚洲精品视频在线观看网站| 91精品国产高清一区二区三区蜜臀| 另类小说综合欧美亚洲| 中文字幕一区二区三区乱码在线| 欧美绝品在线观看成人午夜影视 | 国产精品免费丝袜| 91精品国产综合久久久蜜臀粉嫩 | 色综合欧美在线视频区| 青娱乐精品视频在线| 综合激情成人伊人| 91精品国产免费| 91色porny在线视频| 久久精品av麻豆的观看方式| 亚洲区小说区图片区qvod| 日韩一区二区三区免费看 | 在线精品亚洲一区二区不卡| 久久99久久99精品免视看婷婷 | 欧美一三区三区四区免费在线看| 国产电影一区二区三区| 午夜电影一区二区| 成人免费视频在线观看| 精品美女在线观看| 欧美日韩免费高清一区色橹橹| 韩国一区二区视频| 亚瑟在线精品视频| 亚洲欧美一区二区三区极速播放 | 蜜臀a∨国产成人精品| 一二三区精品视频| 国产精品久久久久久久久果冻传媒 | 国产成人精品综合在线观看| 日本亚洲电影天堂| 亚洲va中文字幕| 亚洲精品第1页| 亚洲激情av在线| 国产精品美女一区二区| 国产欧美精品在线观看| 久久夜色精品一区| 精品日产卡一卡二卡麻豆| 7777精品伊人久久久大香线蕉超级流畅| av亚洲精华国产精华| 9色porny自拍视频一区二区| 国产精品资源在线观看| 国内精品不卡在线| 国产成人一区在线| 高清视频一区二区| 国产成人午夜高潮毛片| 久久电影网电视剧免费观看| 亚洲成人你懂的| 日韩欧美不卡在线观看视频| 欧美日韩一级二级| 欧美亚洲精品一区| 成人动漫在线一区| 成人av在线资源| 丁香婷婷深情五月亚洲| 国产精品一区二区三区四区| 麻豆成人免费电影| 免费成人美女在线观看.| 日日摸夜夜添夜夜添精品视频| 亚洲成av人影院| 香蕉成人伊视频在线观看| 中文在线资源观看网站视频免费不卡| 久久日一线二线三线suv| 精品国产第一区二区三区观看体验| 欧美日韩黄色一区二区| 日韩一区二区三区高清免费看看| 欧美日韩国产免费一区二区| 色噜噜夜夜夜综合网| 色老头久久综合| 91精品国产乱码久久蜜臀| 欧美岛国在线观看| 精品久久久久久久人人人人传媒 | 日韩一二三区不卡| 日韩一区二区高清| 国产精品网曝门| 国产精品久久久久影院| 亚洲欧洲国产日本综合| 亚洲视频免费在线观看| 日韩av网站在线观看| 国产揄拍国内精品对白| 国产成人福利片| 欧洲国产伦久久久久久久| 欧美人狂配大交3d怪物一区| 91精品国产综合久久精品图片| 欧美成人精品1314www| 亚洲欧美激情一区二区| 亚洲国产va精品久久久不卡综合| 肉色丝袜一区二区| www.亚洲激情.com|