Page 3 of 3 FirstFirst 123
Results 21 to 24 of 24

Thread: <form:checkbox> no function

  1. #21
    Join Date
    Nov 2005
    Location
    Reutlingen, Germany
    Posts
    2,098

    Default

    Quote Originally Posted by JanHelmut View Post
    Controller:

    Code:
    public class ReisekostenFormController extends SimpleFormController {
    
    	...
    	private DateFormat dateFormat;
    	...
    }
    Just as a hint: The shared DateFormat is going to be a problem since it is not thread-safe!

    Joerg
    This post can contain insufficient information.

  2. #22
    Join Date
    Jan 2008
    Location
    Germany
    Posts
    12

    Default

    Quote Originally Posted by Jörg Heinicke View Post
    Just as a hint: The shared DateFormat is going to be a problem since it is not thread-safe!

    Joerg

    Yes, I have solved the problem (see the posts before)

  3. #23
    Join Date
    Nov 2005
    Location
    Reutlingen, Germany
    Posts
    2,098

    Default

    I might have overseen it but I did not see anything about the DateFormat object. The lack of thread-safeness is not related to your current problem, but to your next one

    Joerg
    This post can contain insufficient information.

  4. #24
    Join Date
    Jan 2008
    Location
    Germany
    Posts
    12

    Default

    we fixed it with a dateFormatPropertyEditorRegistrar....

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •