Search:

Type: Posts; User: Hedin; Keyword(s):

Search: Search took 0.03 seconds.

  1. Check this setting. It is should looks like this:...

    Check this setting. It is should looks like this:

    <webflow:flow-builder-services id="flowBuilderServices" expression-parser="myExpressionParser" />
  2. We are also get this exception in our program....

    We are also get this exception in our program. The reproducing is simple - if you have executing two (or more) ajax requests and one of it is processed for more than 30 second (this can be in the...
  3. RequestContextHolder.getRequestContext().getMessag...

    RequestContextHolder.getRequestContext().getMessageContext()
  4. You can use SWF message system...

    You can use SWF message system - it's will be shown by messages tag.
  5. The application map is stored in the...

    The application map is stored in the ServletContext. Quote from WebLogic documentation:



    http://edocs.bea.com/wls/docs92/webapp/sessions.html#wp150448
  6. Replies
    4
    Views
    1,272

    ...but SWF 2.0.6 have another issue with...

    ...but SWF 2.0.6 have another issue with <rich:messages> from richfaces 3.3.0: http://jira.springframework.org/browse/SWF-1073
  7. Replies
    28
    Views
    21,703

    Example for integration flow "render fragments"...

    Example for integration flow "render fragments" with RichFaces:

    Flow:



    <render fragments=":clientForm:field" />


    faces-config.xml:
  8. Replies
    6
    Views
    1,890

    Try to clear browser cache. In our project, after...

    Try to clear browser cache. In our project, after switching from 3.2.2 to 3.3.0 there was JavaScript errors because of browser caching old scripts. After hitting refresh in IE (F5) - errors are...
  9. Replies
    28
    Views
    21,703

    Here is a snip from the implementation of render...

    Here is a snip from the implementation of render tag (class org.springframework.webflow.action.RenderAction):



    context.getFlashScope().put(View.RENDER_FRAGMENTS_ATTRIBUTE, fragments);


    As...
  10. Replies
    2
    Views
    832

    In my experience, using more than one AJAX...

    In my experience, using more than one AJAX framework in one application - it's a definitely a wrong way. We have tried to use RichFaces together with Trinidad - is was nightmare... After certain...
  11. A simple works...

    A simple <set name="var" value="true"/> works fine for me (using jboss-el).
  12. Replies
    28
    Views
    21,703

    It's because if you are not have any modalPanel...

    It's because if you are not have any modalPanel in your page - richfaces didn't include modal panel support script. To avoid this you can include dummy panel in modalDialogSupport.xhtml:



    ...
  13. Replies
    28
    Views
    21,703

    If Spring Faces popup dialog appears, then you...

    If Spring Faces popup dialog appears, then you must be using sf:commandButton component - in this case there is spring ajax request issued. For RichFaces ajax you must use a4j:commandButton instead....
  14. Replies
    4
    Views
    3,271

    Problem is here: ...

    Problem is here:

    <filter-name>richfaces</filter-name>
    <servlet-name>Faces Servlet</servlet-name>

    Bind this filter to the spring servlet instead.
  15. Replies
    7
    Views
    3,212

    This code is works for me:

    This code is works for me:



    <ui:composition
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    ...
  16. Replies
    7
    Views
    3,212

    Facelets didn't use *.tld files. It is use it own...

    Facelets didn't use *.tld files. It is use it own format - *.taglib.xml files. JSTL support is coded inside Facelets:


    ...
  17. Replies
    5
    Views
    1,462

    Quote from reference: If this doesn't...

    Quote from reference:



    If this doesn't work, then this is definitely a bug. ;)
  18. Replies
    28
    Views
    21,703

    This code is works for me:

    This code is works for me:



    <view-state id="stateId"...>
    <on-entry>
    <set name="externalContext.requestMap.targetView" value="'_new'"/>
    </on-entry>
    </view-state>
  19. Replies
    28
    Views
    21,703

    I would not give up so easily. :-) In...

    I would not give up so easily. :-)

    In ExternalContext there is exists more properties to try: sessionMap, globalSessionMap, applicationMap, nativeContext, nativeRequest...

    If none of them...
  20. Replies
    28
    Views
    21,703

    Well, looks like RequestContext isn't alive at...

    Well, looks like RequestContext isn't alive at that point. You can try to pass parameters from flow by setting data in HttpServletRequest throught use requestParameters or externalContext variables:...
  21. Replies
    28
    Views
    21,703

    Did you try...

    Did you try RequestContextHolder.getRequestContext()?
  22. Replies
    8
    Views
    4,515

    We use facelets 1.1.14 and don't have any problem...

    We use facelets 1.1.14 and don't have any problem with PhaseListener's. All is needed - is just register them in faces-config.xml. If you need access to the flow context - invoke...
  23. Replies
    8
    Views
    4,515

    You can use JSF capability (PhaseListener for...

    You can use JSF capability (PhaseListener for instance) to execute code at the specified moment of the JSF lifecycle.
  24. Replies
    28
    Views
    21,703

    RichFaces modal dialog support

    I just want to share my experience of RichFaces modal dialog support without using Spring JS. Steps to introduce such support into your program (with facelets):

    1) Request for popup from server:
    ...
  25. Declarative transactions using Tiger annotations

    Hello All!

    :idea:
    I just want to share the code, that allow using JDK 5 annotations for declarative transactions.

    Transacted.java:


    package spring.transaction;
Results 1 to 25 of 25