Package javawebparts.taglib.jstags

This package contains the JSTags taglib.

See:
          Description

Class Summary
CookieFunctionsTag This class is a custom tag that renders the getCookie() and setCookie() Javascript functions which can be called to get or set a cookie.
CreateBookmarkTag This class is a custom tag that renders the JWPCreateBookmark() Javascript function which can be called to bookmark the current page, or an arbitrary URL.
DateDifferenceTag This class is a custom tag that renders the JWPDateDifference() Javascript function which can be called to determine how many days there are between two dates.
DisableRightClickTag This class is a custom tag that renders the JWPDisableRightClick() Javascript function which can be called to disable (or enable if previously disabled) the ability for a user to bring up a right-click context menu.
FormToXMLTag This class is a custom tag that renders the JWPFormToXML() Javascript function which can be called to generate an XML document (technically, a string of XML, not a true XML document) from an HTML form.
FullTrimTag This class is a custom tag that renders the JWPFullTrim() Javascript function which can be called to trim whitespace from both ends of a string.
GetParamsTag This class is a custom tag that renders the JWPGetParams() Javascript function which can be called to retrieve the value of a named parameter, or an array of all parameters, that were on the query string used to access the page.
JSDigesterTag This class is a custom tag that renders the JSDigester.
LayerCenterTag This class is a custom tag that renders the JWPLayerCenter() Javascript function which takes in a reference to a <div> or <layer> tag and centers it, taking into account how the page is scrolled.
LocateSelectValueTag This class is a custom tag that renders the JWPLocateSelectValue() Javascript function which takes in a reference to a <select> tag and locates the value in it (and selects it) that is passed in.
MaximizeWindowTag This class is a custom tag that renders the JWPMaximizeWindow() Javascript function which can be called to maximize the current browser window.
PrintPageTag This class is a custom tag that renders the JWPPrintPage() Javascript function which can be called to trigger a print dialog for the current page.
ReplaceSubstrTag This class is a custom tag that renders the JWPReplaceSubstr() Javascript function which can be called to replace all occurances of a given character or string from another.
StringContentValidTag This class is a custom tag that renders the JWPStringContentValid() Javascript function which can be called to determine if a string contains only valid characters, or if a string does no contain any of a list of valid characters.
StripCharsTag This class is a custom tag that renders the JWPStripChars() Javascript function which takes in three strings.
SubstrCountTag This class is a custom tag that renders the JWPSubstrCount() Javascript function which takes in a string and counts the number of times another string (or single character) appears in it.
 

Package javawebparts.taglib.jstags Description

This package contains the JSTags taglib. This taglib has a collection of tags which each correspond to some Javascript function that can be rendered on a page. These functions are general-purpose-type things. For instance, if you need a function to trim whitespace from both ends of a string, something which is not built in to Javascript, you can drop the fullTrim string on your page and it will render the fullTrim() Javascript function, which you can then use throughout your page.

This package depends on the following extra packages to compile and run: None.



Copyright © 2005 Frank W. Zammetti