1
0
-1


Hello everybody,

get the value the user selected from a select box, 

I would like to know what are all the ways I can do it


    CommentAdd your comment...

    2 answers

    1.  
      1
      0
      -1
      Yes, but the problem is that it doesn't show me the value when 
      the user changes to another option, for example, he selects the x
      value of a text box but it doesn't show it, it only shows
      the default value. I need it to show me the value that I select in real time

      #binder.options.FORM_DEF_ID.FIELD_ID#
        CommentAdd your comment...
      1.  
        1
        0
        -1

        Looks like a similar question as in get the value of a select box

        1. Mike Perez
          Yes, but the problem is that it doesn't show me the value when 
          the user changes to another option, for example, he selects the x
          value of a text box but it doesn't show it, it only shows
          the default value. I need it to show me the value that I select in real time

          #binder.options.FORM_DEF_ID.FIELD_ID#
        2. Matthew King

          The Joget hash variable only works for data values ALREADY saved into the database (and not changes in client side browser form that's not saved yet).
          FYI the Joget form hash variable is a shorthand database query; "#form.table.email[{requestParam}]#" instructs Joget to:

          select c_email from app_fd_table where id=#requestParam#
        CommentAdd your comment...