溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

JSP中自定義標簽(結(jié)合easyui)——JSP中的TAG

發(fā)布時間:2020-08-03 01:15:01 來源:網(wǎng)絡(luò) 閱讀:2817 作者:java程序猿 欄目:開發(fā)技術(shù)

使用了easyui的樣式封裝的下拉框標簽:

<%@ tag language="java" pageEncoding="utf-8"%>
<%@ tag import="com.cseds.common.dic.DicHolder" %>
<%@ tag import="com.cseds.common.dic.Dics" %>
<%@ tag import="com.cseds.system.dto.DataDictionaryDTO" %>
<%@ tag import="java.util.List" %>


<%@ attribute name="id" required="true" rtexprvalue="true" %>  
<%@ attribute name="name" required="true" rtexprvalue="true" %>
<%@ attribute name="required" required="false" rtexprvalue="true" %>
<%@ attribute name="width" required="false" rtexprvalue="true" %>
<%@ attribute name="type" required="true" rtexprvalue="true" %>
<%@ attribute name="readonly" required="false" rtexprvalue="true" %>

  
<select class="easyui-validatebox easyui-combobox"  <%=readonly %>
 data-options="editable:false,required:<%=required%>" id="<%=id%>" name="<%=name%>">
	<%
		Dics dics =  DicHolder.getDicsByType(type);
		List<DataDictionaryDTO> list = dics.getAllDicList();
		
		if(required.equals("false")){
			%>
			
			<option value="-1">--請選擇--</option>
			
			<%
			
		}
	
		for(DataDictionaryDTO  dto : list)
		{
	%>
		<option value="<%=dto.getDictData_Value() %>"><%=dto.getName()%></option>
	<%	
		}
	%>
	
</select>
<br>

調(diào)用方式:

<%@ taglib prefix="mx" tagdir="/WEB-INF/tags"%> 
<mx:cb_dic id="insresult" name="insresult" required="false" width="200px" type="INSRESULT" readonly="readonly='true'" />


參考:http://blog.csdn.net/hongweigg/article/details/12006849

http://zhangxing119.iteye.com/blog/1919548



向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

tag j
AI