Search:

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

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    15
    Views
    23,117

    Following way is working for me. Read the...

    Following way is working for me. Read the accepted answer.

    http://stackoverflow.com/questions/3616359/who-sets-response-content-type-in-spring-mvc-responsebody
  2. Replies
    2
    Views
    1,732

    I've enabled debug logging and saw following...

    I've enabled debug logging and saw following differences between normal and ajax form submit:

    1. Normal submit:


    Processing user event 'upload'
    Resolved model...
  3. Replies
    2
    Views
    1,732

    I'm having this problem also. Someone fixed this?

    I'm having this problem also.
    Someone fixed this?
  4. Replies
    2
    Views
    1,579

    Read following thread:...

    Read following thread:
    http://forum.springsource.org/showthread.php?t=95138
  5. Replies
    14
    Views
    2,592

    I can't find...

    I can't find DateTimeFormatAnnotationFormatterFactory in spring 3.0.5 code?
    Is that changed to JodaDateTimeFormatAnnotationFormatterFactory?
  6. @DateTimeFormat in form model still not working...

    @DateTimeFormat in form model still not working for me.
    Am I doing something wrong?

    Following working for me, But it's not that effective because I want to use dates in "yyyy-MM-dd HH:mm" and...
  7. I also having this problem. Anyone had fixed this...

    I also having this problem. Anyone had fixed this issue?
  8. Replies
    2
    Views
    1,039

    Any solution to this problem? How can I use...

    Any solution to this problem?

    How can I use annotation based formatter in spring web flow without specifying strictly in flow code?

    I finally got it working. Read here:...
  9. Replies
    17
    Views
    4,645

    I've deleted my old STS 2.3.2 and reinstalled STS...

    I've deleted my old STS 2.3.2 and reinstalled STS 2.5.1.
    Then installed the plugins successfully.
    I think it wasn't internet/firewall issue because I've tried installing plugins on STS 2.3.2 also,...
  10. Replies
    17
    Views
    4,645

    I cannot install any plugin into my freshly...

    I cannot install any plugin into my freshly installed STS 2.5.1.

    It display no error, just takes too long time (I've waited 20 minutes and killed from task manager, it took 2-3 minutes on STS...
  11. Replies
    1
    Views
    1,530

    I found JIRA related to this:...

    I found JIRA related to this:
    https://jira.springframework.org/browse/SPR-6898
  12. Thank you it helped me. BTW I've tried this...

    Thank you it helped me.

    BTW I've tried this and not worked:
    http://forum.springsource.org/showthread.php?t=81858
  13. All my css and js in head section, but still had...

    All my css and js in head section, but still had an issue.



    Yep, dojo parse not called on ajax load.
  14. Replies
    11
    Views
    15,885

    This post helped me. Thank you!

    This post helped me. Thank you!
  15. Replies
    3
    Views
    1,225

    I haven't ever used commandName before, I always...

    I haven't ever used commandName before, I always use modelAttribute.

    Your "path" attribute is wrong.
  16. Replies
    8
    Views
    826

    Seem like you haven't wrapped your ...

    Seem like you haven't wrapped your <evaluate> between <on-entry> or <on-start> or tag which support evaluate.
    BTW what IDE are you using?
    I suggest you to use spring source tool suite, it validates...
  17. Replies
    3
    Views
    1,225

    There's no modelAttribute in your form. Try...

    There's no modelAttribute in your form.

    Try following:


    <form:form commandName="a" action="${flowExecutionUrl}" modelAttribute="b[${indexOfTheElementOfTypeB}]">
    Enter the value for...
  18. Replies
    8
    Views
    826

    I have never called form model methods in flow...

    I have never called form model methods in flow because I think that's inappropriate. I think you can only call bean methods.
    Try calling your controller's method and pass the form model.


    ...
  19. You should pass the request context from flow....

    You should pass the request context from flow. Try following example:

    Flow code:


    <?xml version="1.0" encoding="UTF-8"?>
    <flow xmlns="http://www.springframework.org/schema/webflow"...
  20. Replies
    2
    Views
    863

    Try reading request parameter like following. It...

    Try reading request parameter like following.
    It processes "http://abc.com/message?messageId=3" but when rendering view, the url changes to something like "http://abc.com/message?execution=e1s1".
    ...
  21. Replies
    5
    Views
    1,810

    Is there any jquery way to implement this?

    Is there any jquery way to implement this?
  22. How to add callback in jquery instead dojo? ...

    How to add callback in jquery instead dojo?

    BTW I found a jira related to this thread:
    https://jira.springframework.org/browse/SWF-1290

    Edit:
    I found dojo.connect equivalent in jquery:
    ...
  23. Replies
    7
    Views
    1,421

    Oh redirect is not available for end-state. ...

    Oh redirect is not available for end-state.

    Try using view-state for redirecting:


    <view-state id="toGoogle" redirect="true" view="externalRedirect:http://www.google.com/"/>

    BTW I found a...
  24. Replies
    7
    Views
    1,421

    I'm using external redirect in view-state and...

    I'm using external redirect in view-state and working.

    I haven't tested with end-state.


    <view-state id="toGoogle" redirect="true" view="externalRedirect:http://www.google.com/"/>

    Maybe you...
  25. Replies
    55
    Views
    42,235

    Following is working for me: ...

    Following is working for me:

    http://forum.springsource.org/showthread.php?p=315661
Results 1 to 25 of 125
Page 1 of 5 1 2 3 4