`

使用zk的bandbox和listbox实现的一个具有搜索功能的combobox(实现后台分页)

阅读更多

在图片附件中有效果图,可以先看一下.

 

先说下来由:因为不太喜欢zk的tree,也因为数据量实在太大,每次都用tree全部现实出来很耗费性能

所以就想到了google的搜索框,打算自己做一个.

 

整体思路是这样的:

 

做一个bandbox,里边包含一个textbox和一个listbox

 

textbox用于接收搜索的条件

 

listbox用于显示搜索的内容,选定后反填到bandbox中

 

step.1---页面(test.zul)

Html代码 复制代码
  1. <window id="testWnd" title="test" border="normal"    
  2.     use="com.test.TestWindow" height="95%">  
  3.     <grid width="60%">  
  4.         <columns>  
  5.             <column label=""/>  
  6.             <column label=""/>  
  7.         </columns>  
  8.         <rows>       
  9.             <row height="40px" spans="1,2">  
  10.                 名称:   
  11.                 <hbox>  
  12.                 <!--    
  13.                     autodrop属性实现bandbox的自动弹出    
  14.                     constraint属性是对bandbox的验证,其中"no empty"是非空验证   
  15.                     如果你想定义验证后显示的内容只需要"no empty: 你想显示的信息"就可以了   
  16.                 -->  
  17.                 <bandbox id="gxsmc" readonly="true" autodrop="true"  
  18.                     constraint="no empty" width="300px">  
  19.                     <bandpopup>  
  20.                         <hbox>  
  21.                             <label value="输入代码或名称查找:"></label>  
  22.                             <!-- 用于输入搜索条件的textbox   
  23.                                 为其添加onChang和onOK事件   
  24.                                 目前这个版本需要输入完成后将textbox失去焦点或按回车键才能显示搜索内容   
  25.                                 我想做个类似google那种效果的,一直没搞成,所有的事件都试过了   
  26.                                 希望高手们帮忙看看   
  27.                              -->  
  28.                             <textbox id="term" onChange="testWnd.initTest(self.value)"  
  29.                                 onOK="testWnd.initTest(self.value)"/>  
  30.                         </hbox>  
  31.                         <vbox>  
  32.                         <!-- 用于显示搜索内容的listbox -->  
  33.                         <listbox id="gxsList" width="320px" height="175px">  
  34.                             <listhead>  
  35.                                 <listheader label="名称" width="300px" sort="auto" />  
  36.                             </listhead>  
  37.                         </listbox>  
  38.                         <!-- 用于分页的控件 -->  
  39.                         <paging id="gxsPag" pageSize="10"></paging>  
  40.                     </vbox>  
  41.                     </bandpopup>  
  42.                 </bandbox>  
  43.                 <image src="img/Centigrade-Widget-Icons/QuestionmarkButton-16x16.png" tooltip="title"  
  44.                             style="cursor:pointer" popup="title"/>操作说明   
  45.                 </hbox>  
  46.             </row>  
  47.         </rows>  
  48.     </grid>  
  49.     <popup id="title" width="300px">  
  50.         <html>  
  51.             单击左边输入框,输入管辖所代码或管辖所名称&lt;br /&gt;   
  52.             要求代码长度大于4位,名称长度大于2位&lt;br /&gt;   
  53.             输入完成后,按"回车(Enter)键"或"Tab"键选择   
  54.         </html>  
  55.     </popup>  
  56. </window>  
<window id="testWnd" title="test" border="normal" 
	use="com.test.TestWindow" height="95%">
   	<grid width="60%">
		<columns>
			<column label=""/>
			<column label=""/>
		</columns>
		<rows>	
			<row height="40px" spans="1,2">
				名称:
				<hbox>
				<!-- 
					autodrop属性实现bandbox的自动弹出 
					constraint属性是对bandbox的验证,其中"no empty"是非空验证
					如果你想定义验证后显示的内容只需要"no empty: 你想显示的信息"就可以了
				-->
				<bandbox id="gxsmc" readonly="true" autodrop="true"
					constraint="no empty" width="300px">
					<bandpopup>
						<hbox>
							<label value="输入代码或名称查找:"></label>
							<!-- 用于输入搜索条件的textbox
								为其添加onChang和onOK事件
								目前这个版本需要输入完成后将textbox失去焦点或按回车键才能显示搜索内容
								我想做个类似google那种效果的,一直没搞成,所有的事件都试过了
								希望高手们帮忙看看
							 -->
							<textbox id="term" onChange="testWnd.initTest(self.value)"
								onOK="testWnd.initTest(self.value)"/>
						</hbox>
						<vbox>
						<!-- 用于显示搜索内容的listbox -->
						<listbox id="gxsList" width="320px" height="175px">
							<listhead>
								<listheader label="名称" width="300px" sort="auto" />
							</listhead>
						</listbox>
						<!-- 用于分页的控件 -->
						<paging id="gxsPag" pageSize="10"></paging>
					</vbox>
					</bandpopup>
				</bandbox>
				<image src="img/Centigrade-Widget-Icons/QuestionmarkButton-16x16.png" tooltip="title"
							style="cursor:pointer" popup="title"/>操作说明
				</hbox>
			</row>
		</rows>
	</grid>
	<popup id="title" width="300px">
		<html>
			单击左边输入框,输入管辖所代码或管辖所名称&lt;br /&gt;
			要求代码长度大于4位,名称长度大于2位&lt;br /&gt;
			输入完成后,按"回车(Enter)键"或"Tab"键选择
		</html>
	</popup>
</window>

 

step.2----建立页面use的后台类

Java代码 复制代码
  1. public class TestWindow extends Window {   
  2.   
  3.     private static final long serialVersionUID = 1L;   
  4.        
  5.     public void initTest(final String value) {   
  6.         //这么做有点笨了,主要是怕sql语句报错,dao中也用了PreparedStatementSetter,主要是以防万一   
  7.         if (value.contains("'") || value.contains("_")) {   
  8.             try {   
  9.                 Messagebox.show("包含非法字符","提示",Messagebox.OK,Messagebox.INFORMATION);   
  10.                 return ;   
  11.             } catch (InterruptedException e) {   
  12.                 e.printStackTrace();   
  13.             }   
  14.         }   
  15.            
  16.         //限制输入的条件的长度大于4的时候才去数据查找数据   
  17.         if (value.getBytes().length >= 4) {   
  18.             //spring   
  19.             ApplicationContext ctx =    
  20.                 WebApplicationContextUtils.getRequiredWebApplicationContext(   
  21.                     (ServletContext)getDesktop().getWebApp().getNativeContext());   
  22.                
  23.             DtgkService dtgkService = (DtgkService)ctx.getBean("dtgkService");   
  24.                
  25.             //获得总条数   
  26.             int maxNum = dtgkService.getGxsInfoCountByInput(value);   
  27.                
  28.             Paging pag = (Paging)getFellow("gxsPag");   
  29.             pag.setTotalSize(maxNum);   
  30.             final int PAGE_SIZE = pag.getPageSize();   
  31.                
  32.             //显示数据   
  33.             reDramGxsInfo(value, 0, PAGE_SIZE);   
  34.                
  35.             //注册onpaging事件   
  36.             pag.addEventListener("onPaging"new EventListener() {   
  37.                 public void onEvent(Event event) {   
  38.                     PagingEvent pe = (PagingEvent) event;   
  39.                     int pgno = pe.getActivePage();//页数(从零计算)   
  40.                     int start=pgno * PAGE_SIZE;   
  41.                     int end = start+PAGE_SIZE;   
  42. //                  System.out.println("pgno"+pgno+"\tstart+"+start+"\tend"+end);   
  43.                     reDramGxsInfo(value, start, end);   
  44.                 }   
  45.             });   
  46.         }   
  47.                
  48.     }   
  49.        
  50.     public void reDramGxsInfo(String value, int firstNum, int maxNum) {   
  51.         final Listbox gxsBox = (Listbox) this.getFellow("gxsList");   
  52.         gxsBox.getItems().clear();   
  53.         final Bandbox combo = (Bandbox) this.getFellow("gxsmc");   
  54.         ApplicationContext ctx =    
  55.             WebApplicationContextUtils.getRequiredWebApplicationContext(   
  56.                 (ServletContext)getDesktop().getWebApp().getNativeContext());   
  57.            
  58.         DtgkService dtgkService = (DtgkService)ctx.getBean("dtgkService");   
  59.         //根据条件搜索内容   
  60.         List<Map<String, String>> gxsList = dtgkService.getGxsInfoByInput(value,firstNum,maxNum);   
  61.         //填充到listbox中   
  62.         for (Map<String, String> map : gxsList) {   
  63.             Listitem item = new Listitem();   
  64.             Listcell lc = new Listcell();   
  65.             lc.setLabel(map.get("NAME"));   
  66.             lc.setValue(map.get("CODE"));   
  67.             lc.setParent(item);   
  68.             gxsBox.appendChild(item);   
  69.         }   
  70.        
  71.         //为listbox添加select事件,当选中数据后返填到bandbox中   
  72.         gxsBox.addEventListener(Events.ON_SELECT, new EventListener() {   
  73.        
  74.             public void onEvent(Event e) throws Exception {   
  75.                 Listitem item = gxsBox.getSelectedItem();   
  76.                 List<Listcell> cellList = item.getChildren();   
  77.                 for (Listcell lc : cellList) {   
  78.                     combo.setValue(lc.getLabel()+","+lc.getValue());   
  79.                 }   
  80.                 combo.closeDropdown();   
  81.             }});   
  82.     }   
  83.   
  84. }  
public class TestWindow extends Window {

	private static final long serialVersionUID = 1L;
	
	public void initTest(final String value) {
		//这么做有点笨了,主要是怕sql语句报错,dao中也用了PreparedStatementSetter,主要是以防万一
		if (value.contains("'") || value.contains("_")) {
			try {
				Messagebox.show("包含非法字符","提示",Messagebox.OK,Messagebox.INFORMATION);
				return ;
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
		}
		
		//限制输入的条件的长度大于4的时候才去数据查找数据
		if (value.getBytes().length >= 4) {
			//spring
			ApplicationContext ctx = 
				WebApplicationContextUtils.getRequiredWebApplicationContext(
					(ServletContext)getDesktop().getWebApp().getNativeContext());
			
			DtgkService dtgkService = (DtgkService)ctx.getBean("dtgkService");
			
			//获得总条数
			int maxNum = dtgkService.getGxsInfoCountByInput(value);
			
			Paging pag = (Paging)getFellow("gxsPag");
			pag.setTotalSize(maxNum);
			final int PAGE_SIZE = pag.getPageSize();
			
			//显示数据
			reDramGxsInfo(value, 0, PAGE_SIZE);
			
			//注册onpaging事件
			pag.addEventListener("onPaging", new EventListener() {
				public void onEvent(Event event) {
					PagingEvent pe = (PagingEvent) event;
					int pgno = pe.getActivePage();//页数(从零计算)
					int start=pgno * PAGE_SIZE;
					int end = start+PAGE_SIZE;
//					System.out.println("pgno"+pgno+"\tstart+"+start+"\tend"+end);
					reDramGxsInfo(value, start, end);
				}
			});
		}
			
	}
	
	public void reDramGxsInfo(String value, int firstNum, int maxNum) {
		final Listbox gxsBox = (Listbox) this.getFellow("gxsList");
		gxsBox.getItems().clear();
		final Bandbox combo = (Bandbox) this.getFellow("gxsmc");
		ApplicationContext ctx = 
			WebApplicationContextUtils.getRequiredWebApplicationContext(
				(ServletContext)getDesktop().getWebApp().getNativeContext());
		
		DtgkService dtgkService = (DtgkService)ctx.getBean("dtgkService");
		//根据条件搜索内容
		List<Map<String, String>> gxsList = dtgkService.getGxsInfoByInput(value,firstNum,maxNum);
		//填充到listbox中
		for (Map<String, String> map : gxsList) {
			Listitem item = new Listitem();
			Listcell lc = new Listcell();
			lc.setLabel(map.get("NAME"));
			lc.setValue(map.get("CODE"));
			lc.setParent(item);
			gxsBox.appendChild(item);
		}
	
		//为listbox添加select事件,当选中数据后返填到bandbox中
		gxsBox.addEventListener(Events.ON_SELECT, new EventListener() {
	
			public void onEvent(Event e) throws Exception {
				Listitem item = gxsBox.getSelectedItem();
				List<Listcell> cellList = item.getChildren();
				for (Listcell lc : cellList) {
					combo.setValue(lc.getLabel()+","+lc.getValue());
				}
				combo.closeDropdown();
			}});
	}

}

 

step.3---service的方法就两句话,一块贴出来了

Java代码 复制代码
  1. /**  
  2.      * 获取信息,根据输入框的录入  
  3.      * @param value  
  4.      * @param firstNum  
  5.      * @param maxNum  
  6.      * @return  
  7.      */  
  8.     public List<Map<String, String>> getGxsInfoByInput(String value, int firstNum, int maxNum) {   
  9.         return this.userDao.queryGxsByInput(value, firstNum, maxNum);   
  10.     }   
  11.        
  12.     /**  
  13.      * 获取count  
  14.      * @param value  
  15.      * @return  
  16.      */  
  17.     public int getGxsInfoCountByInput(String value) {   
  18.         return this.userDao.queryGxsCountByInput(value);   
  19.     }  
/**
	 * 获取信息,根据输入框的录入
	 * @param value
	 * @param firstNum
	 * @param maxNum
	 * @return
	 */
	public List<Map<String, String>> getGxsInfoByInput(String value, int firstNum, int maxNum) {
		return this.userDao.queryGxsByInput(value, firstNum, maxNum);
	}
	
	/**
	 * 获取count
	 * @param value
	 * @return
	 */
	public int getGxsInfoCountByInput(String value) {
		return this.userDao.queryGxsCountByInput(value);
	}

 

step.4-----dao

Java代码 复制代码
  1. public int queryGxsCountByInput(final String value) {   
  2.         String sql = "SELECT DISTINCT COUNT(*) FROM " +   
  3.             "TABLENAME WHERE CODE LIKE '%"+value+"%' OR NAME LIKE '%"+value+"%'";   
  4.         return this.getJdbcTemplate().queryForInt(sql);   
  5.     }   
  6.   
  7.   
  8. public List<Map<String, String>> queryGxsByInput(final String value, int firstNum, int maxNum) {   
  9.         String sql = "SELECT * FROM (SELECT DISTINCT ROWNUM AS RN, T.CODE,T.NAME FROM " +   
  10.             "TABLENAME T WHERE T.CODE LIKE ? OR T.NAME LIKE ?) WHERE RN>"+firstNum+" AND RN<="+maxNum;   
  11.            
  12.         return this.getJdbcTemplate().query(sql, new PreparedStatementSetter(){   
  13.   
  14.             public void setValues(PreparedStatement pst) throws SQLException {   
  15.                 pst.setString(1"%"+value+"%");   
  16.                 pst.setString(2"%"+value+"%");   
  17.                    
  18.             }}, new GxsMapper());   
  19.     }   
  20.        
  21.     protected class GxsMapper implements RowMapper {   
  22.   
  23.         public Object mapRow(ResultSet rs, int rowNum) throws SQLException {   
  24.             Map<String, String> gxsMap = new HashMap<String, String>();   
  25.             gxsMap.put("CODE", rs.getString("CODE"));   
  26.             gxsMap.put("NAME", rs.getString("NAME"));   
  27.                
  28.             return gxsMap;   
  29.         }   
  30.            
  31.     }  
public int queryGxsCountByInput(final String value) {
		String sql = "SELECT DISTINCT COUNT(*) FROM " +
			"TABLENAME WHERE CODE LIKE '%"+value+"%' OR NAME LIKE '%"+value+"%'";
		return this.getJdbcTemplate().queryForInt(sql);
	}


public List<Map<String, String>> queryGxsByInput(final String value, int firstNum, int maxNum) {
		String sql = "SELECT * FROM (SELECT DISTINCT ROWNUM AS RN, T.CODE,T.NAME FROM " +
			"TABLENAME T WHERE T.CODE LIKE ? OR T.NAME LIKE ?) WHERE RN>"+firstNum+" AND RN<="+maxNum;
		
		return this.getJdbcTemplate().query(sql, new PreparedStatementSetter(){

			public void setValues(PreparedStatement pst) throws SQLException {
				pst.setString(1, "%"+value+"%");
				pst.setString(2, "%"+value+"%");
				
			}}, new GxsMapper());
	}
	
	protected class GxsMapper implements RowMapper {

		public Object mapRow(ResultSet rs, int rowNum) throws SQLException {
			Map<String, String> gxsMap = new HashMap<String, String>();
			gxsMap.put("CODE", rs.getString("CODE"));
			gxsMap.put("NAME", rs.getString("NAME"));
			
			return gxsMap;
		}
		
	}

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics