1 Reply Latest reply on Mar 12, 2010 8:37 AM by babazs

    about @requestparameter

    wwwwcome

      My English is not good。
      I use Ext Js in  my project.So i must use url to submit form.
      I don't know how to use Seam to receive the data.Someone told me ,I can use the @RequestParameter 。but how to use the @RequestParameter.


      Who can give me a example.


      thanks!



      sean

        • 1. Re: about @requestparameter
          babazs
          If you have an url like this: http://localhost:8080/myApp/home.seam?myId=77

          @Name("myBean")
          public class MyBean{

          @RequestParameter
          private Long myId;

          }

          If you want to submit a form you should use a page action.