Java Doc for Div.java in  » Web-Framework » struts-2.0.11 » org » apache » struts2 » components » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Framework » struts 2.0.11 » org.apache.struts2.components 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.struts2.components.Component
      org.apache.struts2.components.UIBean
         org.apache.struts2.components.ClosingUIBean
            org.apache.struts2.components.AbstractRemoteCallUIBean
               org.apache.struts2.components.Div

Div
public class Div extends AbstractRemoteCallUIBean (Code)
The div tag when used on the ajax theme, provides a remote call from the current page to update a section of content without having to refresh the entire page.

It creates a HTML <DIV /> that obtains it's content via a remote XMLHttpRequest call via the dojo framework.

THE FOLLOWING IS ONLY VALID WHEN AJAX IS CONFIGURED
  • href
  • errorText
  • afterLoading
  • executeScripts
  • loadingText
  • listenTopics
  • handler
  • formId
  • formFilter
  • targets
  • notifyTopics
  • showErrorTransportText
  • indicator
'targets' is a list of element ids whose content will be updated with the text returned from request.

'href' needs to be set as an url tag reference value.

'errorText' is the text that will be displayed when there is an error making the request.

'afterLoading' Deprecated. Use 'notifyTopics'.

'executeScripts' if set to true will execute javascript sections in the returned text.

'loadingText' is the text that will be displayed on the 'targets' elements while making the request.

'handler' is the name of the function that will take care of making the AJAX request. Dojo's widget and dom node are passed as parameters).

'formId' is the id of the html form whose fields will be seralized and passed as parameters in the request.

'formFilter' is the name of a function which will be used to filter the fields that will be seralized. This function takes as a parameter the element and returns true if the element should be included.

'updateFreq' sets(in milliseconds) the update interval.

'autoStart' if set to true(true by default) starts the timer automatically

'startTimerListenTopics' is a comma-separated list of topics used to start the timer

'stopTimerListenTopics' is a comma-separated list of topics used to stop the timer

'listenTopics' comma separated list of topics names, that will trigger a request

'indicator' element to be shown while the request executing

'showErrorTransportText': whether errors should be displayed (on 'targets')

'showLoadingText' show loading text on targets

'separateScript' Run scripts in a separate scope, unique for each Div

'notifyTopics' comma separated list of topics names, that will be published. Three parameters are passed:

  • data: html or json object when type='load' or type='error'
  • type: 'before' before the request is made, 'load' when the request succeeds, or 'error' when it fails
  • request: request javascript object, when type='load' or type='error'

Examples

 
 <s:url id="url" action="AjaxTest" />
 <s:div
 id="once"
 theme="ajax"
 href="%{url}"
 loadingText="Loading..."
 listenTopics="/refresh"
 updateFreq="3000"
 autoStart="true"
 formId="form"
 ></s:div>
 
 



Field Summary
final public static  StringCOMPONENT_NAME
    
final public static  StringTEMPLATE
    
final public static  StringTEMPLATE_CLOSE
    
protected  StringautoStart
    
protected  Stringdelay
    
protected  StringrefreshOnShow
    
protected  StringseparateScripts
    
protected  StringstartTimerListenTopics
    
protected  StringstopTimerListenTopics
    
protected  StringupdateFreq
    

Constructor Summary
public  Div(ValueStack stack, HttpServletRequest request, HttpServletResponse response)
    

Method Summary
public  voidevaluateExtraParams()
    
public  StringgetDefaultOpenTemplate()
    
protected  StringgetDefaultTemplate()
    
public  voidsetAfterLoading(String afterLoading)
    
public  voidsetAutoStart(String autoStart)
    
public  voidsetDelay(String delay)
    
public  voidsetRefreshOnShow(String refreshOnShow)
    
public  voidsetSeparateScripts(String separateScripts)
    
public  voidsetStartTimerListenTopics(String startTimerListenTopic)
    
public  voidsetStopTimerListenTopics(String stopTimerListenTopic)
    
public  voidsetUpdateFreq(String updateInterval)
    

Field Detail
COMPONENT_NAME
final public static String COMPONENT_NAME(Code)



TEMPLATE
final public static String TEMPLATE(Code)



TEMPLATE_CLOSE
final public static String TEMPLATE_CLOSE(Code)



autoStart
protected String autoStart(Code)



delay
protected String delay(Code)



refreshOnShow
protected String refreshOnShow(Code)



separateScripts
protected String separateScripts(Code)



startTimerListenTopics
protected String startTimerListenTopics(Code)



stopTimerListenTopics
protected String stopTimerListenTopics(Code)



updateFreq
protected String updateFreq(Code)




Constructor Detail
Div
public Div(ValueStack stack, HttpServletRequest request, HttpServletResponse response)(Code)




Method Detail
evaluateExtraParams
public void evaluateExtraParams()(Code)



getDefaultOpenTemplate
public String getDefaultOpenTemplate()(Code)



getDefaultTemplate
protected String getDefaultTemplate()(Code)



setAfterLoading
public void setAfterLoading(String afterLoading)(Code)



setAutoStart
public void setAutoStart(String autoStart)(Code)



setDelay
public void setDelay(String delay)(Code)



setRefreshOnShow
public void setRefreshOnShow(String refreshOnShow)(Code)



setSeparateScripts
public void setSeparateScripts(String separateScripts)(Code)



setStartTimerListenTopics
public void setStartTimerListenTopics(String startTimerListenTopic)(Code)



setStopTimerListenTopics
public void setStopTimerListenTopics(String stopTimerListenTopic)(Code)



setUpdateFreq
public void setUpdateFreq(String updateInterval)(Code)



Fields inherited from org.apache.struts2.components.AbstractRemoteCallUIBean
protected String afterLoading(Code)(Java Doc)
protected String beforeLoading(Code)(Java Doc)
protected String errorText(Code)(Java Doc)
protected String executeScripts(Code)(Java Doc)
protected String formFilter(Code)(Java Doc)
protected String formId(Code)(Java Doc)
protected String handler(Code)(Java Doc)
protected String href(Code)(Java Doc)
protected String indicator(Code)(Java Doc)
protected String listenTopics(Code)(Java Doc)
protected String loadingText(Code)(Java Doc)
protected String notifyTopics(Code)(Java Doc)
protected String showErrorTransportText(Code)(Java Doc)
protected String showLoadingText(Code)(Java Doc)

Methods inherited from org.apache.struts2.components.AbstractRemoteCallUIBean
public void evaluateExtraParams()(Code)(Java Doc)
public void setAfterLoading(String afterLoading)(Code)(Java Doc)
public void setBeforeLoading(String beforeLoading)(Code)(Java Doc)
public void setErrorText(String errorText)(Code)(Java Doc)
public void setExecuteScripts(String executeScripts)(Code)(Java Doc)
public void setFormFilter(String formFilter)(Code)(Java Doc)
public void setFormId(String formId)(Code)(Java Doc)
public void setHandler(String handler)(Code)(Java Doc)
public void setHref(String href)(Code)(Java Doc)
public void setIndicator(String indicator)(Code)(Java Doc)
public void setListenTopics(String listenTopics)(Code)(Java Doc)
public void setLoadingText(String loadingText)(Code)(Java Doc)
public void setNotifyTopics(String notifyTopics)(Code)(Java Doc)
public void setShowErrorTransportText(String showError)(Code)(Java Doc)
public void setShowLoadingText(String showLoadingText)(Code)(Java Doc)

Fields inherited from org.apache.struts2.components.ClosingUIBean
String openTemplate(Code)(Java Doc)

Methods inherited from org.apache.struts2.components.ClosingUIBean
abstract public String getDefaultOpenTemplate()(Code)(Java Doc)
public void setOpenTemplate(String openTemplate)(Code)(Java Doc)
public boolean start(Writer writer)(Code)(Java Doc)

Fields inherited from org.apache.struts2.components.UIBean
protected String accesskey(Code)(Java Doc)
protected String cssClass(Code)(Java Doc)
protected String cssStyle(Code)(Java Doc)
protected String defaultTemplateDir(Code)(Java Doc)
protected String defaultUITheme(Code)(Java Doc)
protected String disabled(Code)(Java Doc)
protected String key(Code)(Java Doc)
protected String label(Code)(Java Doc)
protected String labelPosition(Code)(Java Doc)
protected String name(Code)(Java Doc)
protected String onblur(Code)(Java Doc)
protected String onchange(Code)(Java Doc)
protected String onclick(Code)(Java Doc)
protected String ondblclick(Code)(Java Doc)
protected String onfocus(Code)(Java Doc)
protected String onkeydown(Code)(Java Doc)
protected String onkeypress(Code)(Java Doc)
protected String onkeyup(Code)(Java Doc)
protected String onmousedown(Code)(Java Doc)
protected String onmousemove(Code)(Java Doc)
protected String onmouseout(Code)(Java Doc)
protected String onmouseover(Code)(Java Doc)
protected String onmouseup(Code)(Java Doc)
protected String onselect(Code)(Java Doc)
protected HttpServletRequest request(Code)(Java Doc)
protected String required(Code)(Java Doc)
protected String requiredposition(Code)(Java Doc)
protected HttpServletResponse response(Code)(Java Doc)
protected String tabindex(Code)(Java Doc)
protected String template(Code)(Java Doc)
protected String templateDir(Code)(Java Doc)
protected TemplateEngineManager templateEngineManager(Code)(Java Doc)
protected String templateSuffix(Code)(Java Doc)
protected String theme(Code)(Java Doc)
protected String title(Code)(Java Doc)
protected String tooltip(Code)(Java Doc)
protected String tooltipConfig(Code)(Java Doc)
protected String value(Code)(Java Doc)

Methods inherited from org.apache.struts2.components.UIBean
public void addFormParameter(String key, Object value)(Code)(Java Doc)
protected Template buildTemplateName(String myTemplate, String myDefaultTemplate)(Code)(Java Doc)
protected void enableAncestorFormCustomOnsubmit()(Code)(Java Doc)
public boolean end(Writer writer, String body)(Code)(Java Doc)
protected String escape(String name)(Code)(Java Doc)
protected void evaluateExtraParams()(Code)(Java Doc)
protected boolean evaluateNameValue()(Code)(Java Doc)
public void evaluateParams()(Code)(Java Doc)
abstract protected String getDefaultTemplate()(Code)(Java Doc)
public String getTemplate()(Code)(Java Doc)
public String getTemplateDir()(Code)(Java Doc)
public String getTheme()(Code)(Java Doc)
protected Map getTooltipConfig(UIBean component)(Code)(Java Doc)
protected Class getValueClassType()(Code)(Java Doc)
protected void mergeTemplate(Writer writer, Template template) throws Exception(Code)(Java Doc)
protected void populateComponentHtmlId(Form form)(Code)(Java Doc)
public void setAccesskey(String accesskey)(Code)(Java Doc)
public void setCssClass(String cssClass)(Code)(Java Doc)
public void setCssStyle(String cssStyle)(Code)(Java Doc)
public void setDefaultTemplateDir(String dir)(Code)(Java Doc)
public void setDefaultUITheme(String theme)(Code)(Java Doc)
public void setDisabled(String disabled)(Code)(Java Doc)
public void setKey(String key)(Code)(Java Doc)
public void setLabel(String label)(Code)(Java Doc)
public void setLabelposition(String labelPosition)(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void setOnblur(String onblur)(Code)(Java Doc)
public void setOnchange(String onchange)(Code)(Java Doc)
public void setOnclick(String onclick)(Code)(Java Doc)
public void setOndblclick(String ondblclick)(Code)(Java Doc)
public void setOnfocus(String onfocus)(Code)(Java Doc)
public void setOnkeydown(String onkeydown)(Code)(Java Doc)
public void setOnkeypress(String onkeypress)(Code)(Java Doc)
public void setOnkeyup(String onkeyup)(Code)(Java Doc)
public void setOnmousedown(String onmousedown)(Code)(Java Doc)
public void setOnmousemove(String onmousemove)(Code)(Java Doc)
public void setOnmouseout(String onmouseout)(Code)(Java Doc)
public void setOnmouseover(String onmouseover)(Code)(Java Doc)
public void setOnmouseup(String onmouseup)(Code)(Java Doc)
public void setOnselect(String onselect)(Code)(Java Doc)
public void setRequired(String required)(Code)(Java Doc)
public void setRequiredposition(String requiredposition)(Code)(Java Doc)
public void setTabindex(String tabindex)(Code)(Java Doc)
public void setTemplate(String template)(Code)(Java Doc)
public void setTemplateDir(String templateDir)(Code)(Java Doc)
public void setTemplateEngineManager(TemplateEngineManager mgr)(Code)(Java Doc)
public void setTheme(String theme)(Code)(Java Doc)
public void setTitle(String title)(Code)(Java Doc)
public void setTooltip(String tooltip)(Code)(Java Doc)
public void setTooltipConfig(String tooltipConfig)(Code)(Java Doc)
public void setValue(String value)(Code)(Java Doc)

Fields inherited from org.apache.struts2.components.Component
final public static String COMPONENT_STACK(Code)(Java Doc)
protected ActionMapper actionMapper(Code)(Java Doc)
protected String id(Code)(Java Doc)
protected Map parameters(Code)(Java Doc)
protected ValueStack stack(Code)(Java Doc)

Methods inherited from org.apache.struts2.components.Component
public void addAllParameters(Map params)(Code)(Java Doc)
public void addParameter(String key, Object value)(Code)(Java Doc)
public boolean altSyntax()(Code)(Java Doc)
public void copyParams(Map params)(Code)(Java Doc)
protected String determineActionURL(String action, String namespace, String method, HttpServletRequest req, HttpServletResponse res, Map parameters, String scheme, boolean includeContext, boolean encodeResult)(Code)(Java Doc)
protected String determineActionURL(String action, String namespace, String method, HttpServletRequest req, HttpServletResponse res, Map parameters, String scheme, boolean includeContext, boolean encodeResult, boolean forceAddSchemeHostAndPort, boolean escapeAmp)(Code)(Java Doc)
protected String determineNamespace(String namespace, ValueStack stack, HttpServletRequest req)(Code)(Java Doc)
public boolean end(Writer writer, String body)(Code)(Java Doc)
protected boolean end(Writer writer, String body, boolean popComponentStack)(Code)(Java Doc)
protected StrutsException fieldError(String field, String errorMsg, Exception e)(Code)(Java Doc)
protected Component findAncestor(Class clazz)(Code)(Java Doc)
protected String findString(String expr)(Code)(Java Doc)
protected String findString(String expr, String field, String errorMsg)(Code)(Java Doc)
protected Object findValue(String expr)(Code)(Java Doc)
protected Object findValue(String expr, String field, String errorMsg)(Code)(Java Doc)
protected Object findValue(String expr, Class toType)(Code)(Java Doc)
public Stack getComponentStack()(Code)(Java Doc)
public String getId()(Code)(Java Doc)
public Map getParameters()(Code)(Java Doc)
public ValueStack getStack()(Code)(Java Doc)
protected void popComponentStack()(Code)(Java Doc)
public void setActionMapper(ActionMapper mapper)(Code)(Java Doc)
public void setId(String id)(Code)(Java Doc)
public boolean start(Writer writer)(Code)(Java Doc)
protected String toString(Throwable t)(Code)(Java Doc)
public boolean usesBody()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.