- Autocomplete Retrieves a list of values that matches the string entered in a text form field as the user types.
- Callout Displays a callout or popup balloon, anchored to an HTML element with an onclick event.
- HTML Content Replace Builds the JavaScript required to hook a content area (e.g., DIV tag) to a link, image, or other HTML element's onclick event.
- Portlet Portlet-style capability from a AJAX-enabled JSP tag.
- Select/dropdown Based on a selection within a dropdown field, a second select field will be populated.
- Tab Panel Enable an AJAX-based set of property pages.
- Toggle Uses images to create either a single on/off toggle or a sequential rating system.
- Update Field Updates one or more form field values based on response to text entered in another field.
- Area and Anchor Shows how to AJAX-enable any area of your page.
- Ajax DisplayTag Shows how to AJAX-enable DisplayTag
Wednesday, April 19, 2006
AjaxTags for Java Server Pages
AjaxTags is a JSP tag library that provides a set of tags for Java EE developers to create Ajax-enabled web forms. AjaxTags depends on Javascript-based Prototype framework, and the scriptaculous library, it also depends on the DHTML-based OverLIBMWS library. All you have do to create an Ajax-enabled Web form is to include the library in your classpath, define the tld in web.xml and include the required Javascript core in your JSP. An additional event handler (a Java servlet) has to be written to handle the client events. The following is a list of tags provided in the current release (1.2):
Labels:
ajax
Subscribe to:
Post Comments (Atom)
Popular Posts
-
In a previous post, I described how to use Quartz scheduler for scheduling . In this post, I describe the configuration changes required for...
-
The previous post described how to implement a JMS messaging client using Spring JMS . This post will describe how to implement the Message ...
-
This post will describe how to create and deploy a Java Web Application war to Heroku using Heroku CLI. You will need a basic understanding ...
-
JUnit 4 introduces a completely different API to the older versions. JUnit 4 uses Java 5 annotations to describe tests instead of using in...
-
New posts with iText 5.5.12 Following are two new posts for PDF Merge with iText 5.5.12 Merge PDF files using iText 5 Merge and Paginate PDF...
-
Roller is a Java based blog server. It is in Apache incubator as of now. Roller drives Sun Microsystem's blogs.sun.com employee bloggi...
-
In the previous post, I described the use of Displaytag to implement paging in a simple JSP. In this example, I describe the use of Displayt...
-
In the past, I wrote a post on how to implement Web Services using JAX-WS on Glassfish, and Apache Axis. In this post I will describe how to...
-
Update: A new post for validation in struts with annotation is available at: Struts 2 Validation: Annotations . Struts 2.0 relies on a val...
-
Redhat Enterprise Linux provides Redhat Developer Toolset , which allows you to install Git. However, it is usually an older version. If you...
hi Abhi have a problem in ajaxtags-1.2-beta2.js and scriptaculous.js
ReplyDeletein both the js file some error is coming
(1) Class is undefined in ajaxtags-1.2-beta2.js
(2)Exception thrown and not caught in scriptaculous.js
Class is undefined means that u need the set of javascript libraries to be defined before the ajaxtags javascript libraries.
ReplyDelete<script src="${pageContext.request.contextPath}/js/prototype_1_5_0.js" type="text/javascript"></script>
<script src="${pageContext.request.contextPath}/js/scriptaculous/scriptaculous.js" type="text/javascript"></script>
<script src="${pageContext.request.contextPath}/js/overlibmws/overlibmws.js" type="text/javascript"></script>
<script src="${pageContext.request.contextPath}/js/overlibmws/overlibmws.js" type="text/javascript"></script>
<script src="${pageContext.request.contextPath}/js/overlibmws/overlibmws_hide.js" type="text/javascript"></script>
<script src="${pageContext.request.contextPath}/js/overlibmws/overlibmws_iframe.js" type="text/javascript"></script>
<script src="${pageContext.request.contextPath}/js/overlibmws/overlibmws_shadow.js" type="text/javascript"></script>
<script src="${pageContext.request.contextPath}/js/ajax/ajaxtags.js" type="text/javascript"></script>
<script src="${pageContext.request.contextPath}/js/ajax/ajaxtags_controls.js" type="text/javascript"></script>
<script src="${pageContext.request.contextPath}/js/ajax/ajaxtags_parser.js" type="text/javascript"></script>
I am new to this ajaxtags. I want to add new fields based on the responce comming from backend. How can I using this ajaxtags to add new rows
ReplyDelete