1
0
-1

Hi,

I want to check if a certain checkbox is checked or not, in Bean Shell. How should I do that?

    CommentAdd your comment...

    2 answers

    1.  
      1
      0
      -1

      In Bean Shell Programming Guide#UseasFormMultiRowStoreBinder sample, use

      row.getProperty("checkboxID");

      to get the value.

        CommentAdd your comment...
      1.  
        1
        0
        -1

        Hi, the checkbox values are stored as semicolon separated value. You can split the value and check it by looping the list.

          CommentAdd your comment...