|
Ajax auto complete taglib ver. 1.2 JSP custom taglib for UI development. This taglib lets you create a text input field
(like a normal HTML input tag) with some associated list of predefined values. So
your users will be able not only type a value but also select it from the some list. And predefined values will be obtained
from your server-side via Ajax call. Tag is similar to our Ajax input taglib.
For example:
<script language="JavaScript" src="cjajax.js"></script>
<%@ taglib uri="taglib.tld" prefix="ac" %>
Product:
<ac:autocomplete name="a" url="getHelp.jsp" listBackground="white">
</ac:autocomplete>
Try It Out: http://www.servletsuite.com/servlets/autocompletetag.htm
|