|
Ajax combo box taglib ver. 1.2 Custom JSP taglib for UI development. This taglib is similar to our Custom combo box and lets you create
a customized combo box. But here the list of options will be requested via Ajax call from your server side application. For example:
<script language="JavaScript" src="cjajax.js"></script>
<%@ taglib uri="taglib.tld" prefix="a" %>
<a:AjaxComboBox name="list" height="18px" url="content.jsp"
background="#FFFFF0" listBackground="#FFFFF0"
mouseOverBackground="lightgreen" mouseOutBackground="#FFFFF0">
<a:option>Please, select</a:option>
<a:value>-1</a:value>
</a:AjaxComboBox>
Try It Out: http://www.servletsuite.com/servlets/ajaxcombotag.htm
|