Yellow fade taglib ver. 1.2

    JSP custom taglib for UI development. This taglib lets you highlight some element on your page in a light yellow color to call attention to it, and then slowly fade back to white color. It is a simple effect for your Ajax pages for example, where you need to call attention to changed data. This example highlights input field:
 


<%@ taglib uri="taglib.tld" prefix="f" %>

<form>
<input type="text" id="t1" value="Changed value">
</form>

<f:YellowFade id="t1"/>

and you will get some like this (refresh this page for the simulation):

Tags are:

YellowFade

highlights some element on your page and fade after that. Attributes are:

1) id Describes a DHTML id for your element.
2) delay Optional attribute. Describes a delay for fade process in milliseconds. Default value is 600.
3) cond Optional attribute. Describes a boolean value tag's behavior depends on Default value is true (fade).

for downloading:

Library: yellowfadetag.jar    Description: taglib.tld

© Coldbeans      Comments?

See also Coldtags suite - the largest collection of custom JSP tags.

Also in Coldtags: