|
Project Information
Members
Featured
Downloads
Wiki pages
Links
|
Struts2 jQuery PluginA Plugin for the popular java web framework struts2 to provide ajax functionality and UI Widgets based on the jQuery javascript framework. News
FeaturesAJAX supportEasy AJAX Form submission and remote call with the anchor and div tag. Support for AJAX in the Tabs. <%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<html>
<head>
<sj:head/>
</head>
<body>
<div id="div1">Div 1</div>
<s:url id="ajaxTest" value="/AjaxTest.action"/>
<sj:a id="link1" href="%{ajaxTest}" targets="div1">
Update Content
</sj:a>
</body>
</html>Support for themesBuilt in themes from jQuery
More about themes see the Head Tag Use of Build in themes: <%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<html>
<head>
<sj:head jqueryui="true" jquerytheme="cupertino"/>
</head>
<body>
</body>
</html>Use of your costume theme: <%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<html>
<head>
<sj:head jqueryui="true" jquerytheme="mytheme" customBasepath="template/themes"/>
</head>
<body>
</body>
</html>UI widgets
UI interactions
|