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

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

?? menu.dateitem.tag

?? 基于Jscript實現在類庫,集成了現流行的ajax,重載select組件庫
?? TAG
字號:
<%-- 
	ExtJS Tag Library (ExtTLD)
    Copyright (C) 2008  Jaroslav Benc <jaroslav.benc@gmail.com>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
	
	===========================================================================
	BY USING THIS LIBRARY YOU CONFIRM THAT YOU HAVE READ, UNDERSTOOD AND ACCEPT
	OUR ETHICAL CRITERIA LISTED ON THE EXTTLD WEBSITE (WWW.EXTTLD.COM)
	===========================================================================
--%>

<%-- Config params _____________________________START --%>

<%@ attribute
	name="activeClass"
	type="java.lang.String"
	required="false"
	description="
(String)The CSS class to use when the item becomes activated (defaults to 'x-menu-item-active')
" %>

<%@ attribute
	name="allowDomMove"
	type="java.lang.Boolean"
	required="false"
	description="
(Boolean)Whether the component can move the Dom node when rendering (defaults to true).
" %>

<%@ attribute
	name="applyTo"
	type="java.lang.String"
	required="false"
	description="
(Mixed)The id of the node, a DOM node or an existing Element corresponding to a DIV that is already present in the document that specifies some structural markup for this component. When applyTo is used, constituent parts of the component can also be specified by id or CSS class name within the main element, and the component being created may attempt to create its subcomponents from that markup if applicable. Using this config, a call to render() is not required. If applyTo is specified, any value passed for renderTo will be ignored and the target element's parent node will automatically be used as the component's container.
" %>

<%@ attribute
	name="autoShow"
	type="java.lang.Boolean"
	required="false"
	description="
(Boolean)True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove them on render (defaults to false).
" %>

<%@ attribute
	name="canActivate"
	type="java.lang.Boolean"
	required="false"
	description="
(Boolean)True if this item can be visually activated (defaults to false)
" %>

<%@ attribute
	name="cls"
	type="java.lang.String"
	required="false"
	description="
(String)An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for adding customized styles to the component or any of its children using standard CSS rules.
" %>

<%@ attribute
	name="ctCls"
	type="java.lang.String"
	required="false"
	description="
(String)An optional extra CSS class that will be added to this component's container (defaults to ''). This can be useful for adding customized styles to the container or any of its children using standard CSS rules.
" %>

<%@ attribute
	name="disabledClass"
	type="java.lang.String"
	required="false"
	description="
(String)CSS class added to the component when it is disabled (defaults to 'x-item-disabled').
" %>

<%@ attribute
	name="handler"
	type="java.lang.String"
	required="false"
	description="
(Function)A function that will handle the click event of this menu item (defaults to undefined)
" %>

<%@ attribute
	name="hideDelay"
	type="java.lang.Integer"
	required="false"
	description="
(Number)Length of time in milliseconds to wait before hiding after a click (defaults to 100)
" %>

<%@ attribute
	name="hideMode"
	type="java.lang.String"
	required="false"
	description="
(String)How this component should hidden. Supported values are 'visibility' (css visibility), 'offsets' (negative offset position) and 'display' (css display) - defaults to 'display'.
" %>

<%@ attribute
	name="hideOnClick"
	type="java.lang.Boolean"
	required="false"
	description="
(Boolean)True to hide the containing menu after this item is clicked (defaults to true)
" %>

<%@ attribute
	name="hideParent"
	type="java.lang.Boolean"
	required="false"
	description="
(Boolean)True to hide and show the component's container when hide/show is called on the component, false to hide and show the component itself (defaults to false). For example, this can be used as a shortcut for a hide button on a window by setting hide:true on the button when adding it to its parent container.
" %>

<%@ attribute
	name="id"
	type="java.lang.String"
	required="false"
	description="
(String)The unique id of this component (defaults to an auto-assigned id).
" %>

<%@ attribute
	name="listeners"
	type="java.lang.Object"
	required="false"
	description="
(Object)A config object containing one or more event handlers to be added to this object during initialization. This should be a valid listeners config object as specified in the addListener example for attaching multiple handlers at once.
" %>

<%@ attribute
	name="plugins"
	type="java.lang.Object"
	required="false"
	description="
(Object/Array)An object or array of objects that will provide custom functionality for this component. The only requirement for a valid plugin is that it contain an init method that accepts a reference of type Ext.Component. When a component is created, if any plugins are available, the component will call the init method on each plugin, passing a reference to itself. Each plugin can then call methods or respond to events on the component as needed to provide its functionality.
" %>

<%@ attribute
	name="renderTo"
	type="java.lang.String"
	required="false"
	description="
(Mixed)The id of the node, a DOM node or an existing Element that will be the container to render this component into. Using this config, a call to render() is not required.
" %>

<%@ attribute
	name="scope"
	type="java.lang.Object"
	required="false"
	description="
(Object)The scope in which the handler function will be called.
" %>

<%@ attribute
	name="stateEvents"
	type="java.lang.String"
	required="false"
	description="
(Array)An array of events that, when fired, should trigger this component to save its state (defaults to none). These can be any types of events supported by this component, including browser or custom events (e.g., ['click', 'customerchange']).
" %>

<%@ attribute
	name="stateId"
	type="java.lang.String"
	required="false"
	description="
(String)The unique id for this component to use for state management purposes (defaults to the component id).
" %>

<%@ attribute
	name="style"
	type="java.lang.String"
	required="false"
	description="
(String)A custom style specification to be applied to this component's Element. Should be a valid argument to Ext.Element.applyStyles.
" %>

<%@ attribute
	name="xtype"
	type="java.lang.String"
	required="false"
	description="
(String)The registered xtype to create. This config option is not used when passing a config object into a constructor. This config option is used only when lazy instantiation is being used, and a child item of a Container is being specified not as a fully instantiated Component, but as a Component config object. The xtype will be looked up at render time up to determine what type of child Component to create.

 The predefined xtypes are listed here. 

 If you subclass Components to create your own Components, you may register them using Ext.ComponentMgr.registerType in order to be able to take advantage of lazy instantiation and rendering.
" %>

<%-- Config params _____________________________END --%>

<%-- Events _____________________________START --%>

<%@ attribute
	name="onActivate"
	type="java.lang.String"
	required="false"
	description="
( Ext.menu.BaseItem this )Fires when this item is activated
" %>

<%@ attribute
	name="onBeforedestroy"
	type="java.lang.String"
	required="false"
	description="
( Ext.Component this )Fires before the component is destroyed. Return false to stop the destroy.
" %>

<%@ attribute
	name="onBeforehide"
	type="java.lang.String"
	required="false"
	description="
( Ext.Component this )Fires before the component is hidden. Return false to stop the hide.
" %>

<%@ attribute
	name="onBeforerender"
	type="java.lang.String"
	required="false"
	description="
( Ext.Component this )Fires before the component is rendered. Return false to stop the render.
" %>

<%@ attribute
	name="onBeforeshow"
	type="java.lang.String"
	required="false"
	description="
( Ext.Component this )Fires before the component is shown. Return false to stop the show.
" %>

<%@ attribute
	name="onBeforestaterestore"
	type="java.lang.Object"
	required="false"
	description="
( Ext.Component this, Object state )Fires before the state of the component is restored. Return false to stop the restore.
" %>

<%@ attribute
	name="onBeforestatesave"
	type="java.lang.Object"
	required="false"
	description="
( Ext.Component this, Object state )Fires before the state of the component is saved to the configured state provider. Return false to stop the save.
" %>

<%@ attribute
	name="onClick"
	type="java.lang.Object"
	required="false"
	description="
( Ext.menu.BaseItem this, Ext.EventObject e )Fires when this item is clicked
" %>

<%@ attribute
	name="onDeactivate"
	type="java.lang.String"
	required="false"
	description="
( Ext.menu.BaseItem this )Fires when this item is deactivated
" %>

<%@ attribute
	name="onDestroy"
	type="java.lang.String"
	required="false"
	description="
( Ext.Component this )Fires after the component is destroyed.
" %>

<%@ attribute
	name="onDisable"
	type="java.lang.String"
	required="false"
	description="
( Ext.Component this )Fires after the component is disabled.
" %>

<%@ attribute
	name="onEnable"
	type="java.lang.String"
	required="false"
	description="
( Ext.Component this )Fires after the component is enabled.
" %>

<%@ attribute
	name="onHide"
	type="java.lang.String"
	required="false"
	description="
( Ext.Component this )Fires after the component is hidden.
" %>

<%@ attribute
	name="onRender"
	type="java.lang.String"
	required="false"
	description="
( Ext.Component this )Fires after the component is rendered.
" %>

<%@ attribute
	name="onShow"
	type="java.lang.String"
	required="false"
	description="
( Ext.Component this )Fires after the component is shown.
" %>

<%@ attribute
	name="onStaterestore"
	type="java.lang.Object"
	required="false"
	description="
( Ext.Component this, Object state )Fires after the state of the component is restored.
" %>

<%@ attribute
	name="onStatesave"
	type="java.lang.Object"
	required="false"
	description="
( Ext.Component this, Object state )Fires after the state of the component is saved to the configured state provider.
" %>

<%-- Events _____________________________END --%>

<%@ include file="inc/taglibs.jsp" %>
<%@ tag 
	import="org.apache.commons.beanutils.BeanUtils"
	dynamic-attributes="dynamicAttributes"
	description="A menu item that wraps the Ext.DatPicker component." %>
	
	<extutil:processTagAttributes 
		configVar="configMap" 
		eventsVar="eventsMap" 
		include="*" 
		tagJspContext="<%=jspContext %>"
		dynamicAttributes="${dynamicAttributes}" />	
	
	<%-- Process JSP body --%>
	
	<jsp:doBody/>
		
	<c:set var="item">
		    new Ext.menu.DateItem({
		  		<c:forEach items="${configMap}" var="config">
		  			${config.key}:${config.value},
		  		</c:forEach>
		  		listeners:{
			  		<c:forEach items="${eventsMap}" var="event" varStatus="status">
			  			<c:if test="${fn:indexOf(event.value,'function(')==-1}">
				  			${event.key}:function(){${event.value}}			  			
			  			</c:if>
		  				<c:if test="${fn:indexOf(event.value,'function(')>-1}">
				  			${event.key}:${event.value}
			  			</c:if>
			  			${status.last?'':','}
			  		</c:forEach>
		  		}
		    }),
	</c:set>
	
	<extutil:setParentProperties 
		tag="<%=this%>" 
		items="${item}" />

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩av在线免费观看不卡| 成人免费毛片app| 国产精品久久99| 欧美麻豆精品久久久久久| 国产成人亚洲综合a∨婷婷图片| 亚洲伦理在线免费看| 一区二区三区日韩欧美精品| 日韩三级中文字幕| 色婷婷亚洲一区二区三区| 国产一区二区三区蝌蚪| 亚洲国产aⅴ天堂久久| 亚洲国产高清aⅴ视频| 日韩欧美亚洲另类制服综合在线| 91福利精品视频| caoporn国产一区二区| 精品一区二区精品| 丝袜国产日韩另类美女| 亚洲另类在线制服丝袜| 国产精品色哟哟| 久久久久久久久一| 精品久久一区二区| 91精品在线免费观看| 欧洲精品视频在线观看| 99re这里只有精品视频首页| 国产剧情av麻豆香蕉精品| 老汉av免费一区二区三区| 天天操天天色综合| 亚洲国产成人高清精品| 亚洲精品视频在线观看网站| 亚洲欧洲99久久| 国产精品二三区| 国产欧美日韩亚州综合| 久久久亚洲欧洲日产国码αv| 欧美成人激情免费网| 日韩欧美在线123| 欧美精品乱码久久久久久| 91福利国产成人精品照片| 色中色一区二区| av亚洲精华国产精华精| 91伊人久久大香线蕉| 99久久久精品| 色婷婷久久99综合精品jk白丝| 91在线观看下载| 99re成人精品视频| 色婷婷精品久久二区二区蜜臂av | 一区二区在线看| 综合久久综合久久| 一区二区三区免费看视频| 亚洲乱码日产精品bd| 亚洲午夜一区二区三区| 日韩电影一二三区| 国产自产2019最新不卡| 国产成人在线色| aaa国产一区| 欧美视频一区二区在线观看| 欧美精三区欧美精三区| 日韩一级片在线观看| 2014亚洲片线观看视频免费| 国产欧美一区二区精品久导航 | 欧美国产精品一区| 中文字幕亚洲精品在线观看 | 一区二区三区鲁丝不卡| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 精品国产乱码久久久久久蜜臀 | 91在线视频免费观看| 欧洲一区二区av| 制服丝袜一区二区三区| 精品卡一卡二卡三卡四在线| 国产精品美女久久久久久久久| 亚洲精品日韩综合观看成人91| 丝袜亚洲另类欧美| 国产一区二区三区在线看麻豆| kk眼镜猥琐国模调教系列一区二区 | 国产在线视频一区二区| 成人av电影在线| 精品视频免费在线| 久久久久国产一区二区三区四区| 亚洲视频一二三| 人人狠狠综合久久亚洲| www.激情成人| 91精选在线观看| 国产精品成人免费精品自在线观看 | 婷婷丁香激情综合| 国产最新精品免费| 在线一区二区三区四区| 久久老女人爱爱| 亚洲制服丝袜av| 国产在线精品不卡| 欧美体内she精高潮| 久久久久99精品一区| 亚洲国产欧美在线| 国产99久久久国产精品| 欧美日韩大陆在线| 国产精品大尺度| 国产一区二区三区美女| 欧美另类变人与禽xxxxx| 中文字幕av一区二区三区高| 同产精品九九九| 91在线精品一区二区| 久久久青草青青国产亚洲免观| 天堂久久一区二区三区| 99久久久无码国产精品| 久久综合九色综合久久久精品综合| 亚洲综合色噜噜狠狠| 成人一级片网址| 精品国产免费视频| 亚洲va欧美va国产va天堂影院| 成人91在线观看| 久久综合九色综合97婷婷| 亚洲国产aⅴ成人精品无吗| www.亚洲免费av| 国产女主播一区| 国产在线一区观看| 日韩欧美国产一区二区三区| 亚洲一区二区三区爽爽爽爽爽| 国产69精品一区二区亚洲孕妇| 日韩免费看网站| 日韩—二三区免费观看av| 欧美三级视频在线| 亚洲欧美另类小说视频| eeuss国产一区二区三区| 国产日产欧美精品一区二区三区| 另类的小说在线视频另类成人小视频在线| 欧美吻胸吃奶大尺度电影 | 欧美日韩亚洲综合| 亚洲一区二区三区不卡国产欧美 | 99九九99九九九视频精品| 国产日韩欧美在线一区| 国精品**一区二区三区在线蜜桃| 日韩欧美国产午夜精品| 久久国产人妖系列| 日韩欧美国产不卡| 九九视频精品免费| 欧美大白屁股肥臀xxxxxx| 日韩电影网1区2区| 日韩一区二区影院| 蜜臀av性久久久久蜜臀aⅴ四虎 | 亚洲一区二区三区免费视频| 在线观看91精品国产入口| 一区二区三区小说| 日本韩国视频一区二区| 一区二区三区四区国产精品| 在线免费观看日本欧美| 亚洲大片免费看| 欧美一区二区视频免费观看| 日本中文一区二区三区| 91精品国产欧美一区二区成人| 久久9热精品视频| 国产午夜精品美女毛片视频| 国产精品1区2区| 国产精品久久久久久久久搜平片| 99这里只有久久精品视频| 亚洲免费三区一区二区| 欧美色图激情小说| 日本不卡一区二区三区| 精品va天堂亚洲国产| 成人sese在线| 一区二区三区产品免费精品久久75| 欧美在线观看视频一区二区三区 | 日本丶国产丶欧美色综合| 午夜在线电影亚洲一区| 日韩一区二区三区视频| 国产高清亚洲一区| 亚洲丝袜美腿综合| 555夜色666亚洲国产免| 国产综合久久久久久久久久久久| 国产精品网友自拍| 欧美亚洲综合久久| 国模一区二区三区白浆| √…a在线天堂一区| 欧美巨大另类极品videosbest | 色成年激情久久综合| 青娱乐精品视频| 国产日韩精品一区二区三区| aaa亚洲精品一二三区| 日韩和欧美一区二区三区| 久久久综合精品| 欧美性高清videossexo| 国产一区在线观看视频| 国产成人免费网站| 亚洲成国产人片在线观看| 久久嫩草精品久久久久| 欧美伊人精品成人久久综合97| 精品亚洲免费视频| 一区二区视频在线| 日韩你懂的电影在线观看| 99精品热视频| 美日韩一级片在线观看| 亚洲欧美日韩国产综合| 欧美mv日韩mv国产网站app| 日本高清成人免费播放| 韩国成人在线视频| 亚洲精品国产精品乱码不99| 亚洲精品在线免费观看视频| 在线免费精品视频| 国产美女久久久久| 三级影片在线观看欧美日韩一区二区 | 国产综合久久久久影院| 性感美女极品91精品| 国产精品福利影院|