1
0
-1

I am getting the form object and the formData object. But i need to get the formRowSet data to do some processing. How to get this ?

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Hi, maybe you can refer to Bean Shell Programming Guide, there is some sample scripts on load and store binder.

      1. Thejaswi Chindu

        i dont want to use load/store binders because i dont want to save the form data. I just need the live data being filled in the form somehow. Any other way?

      2. Walter

        Where is the trigger point and when to trigger then? You need to be able to elaborate on your expectations on how/when/where to get it done. Examples:- When - you want to get the form data when user press on the submit button. Where to get - since button is pressed, form is submitted to the server. How - retrieve the data in the form store binder. that's what panda meant. OR When - you want to get the form data when user press on the submit button. Where to get - since button is pressed, form is submitted to the server BUT you can override the default behavior, stop it, and inject your client script to post the data elsewhere via ajax. How - since you are using client script to make ajax call to elsewhere, retrieve the data from where you post to.

      CommentAdd your comment...