码迷,mamicode.com
首页 > Web开发 > 详细

JSP中自定义标签(结合easyui)——JSP中的TAG

时间:2016-06-08 10:52:19      阅读:968      评论:0      收藏:0      [点我收藏+]

标签:tag

使用了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" style="width:<%=width%>" <%=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>

调用方式:

<%@ 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



本文出自 “java程序猿的博客” 博客,请务必保留此出处http://chengxuyuan.blog.51cto.com/5789198/1787170

JSP中自定义标签(结合easyui)——JSP中的TAG

标签:tag

原文地址:http://chengxuyuan.blog.51cto.com/5789198/1787170

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!