IT Process Automation

  • 1.  Manipulate FieldSet

    Posted Mar 20, 2015 12:09 PM

    Hi,

    how I write a textfield inside the fieldset.

    I put it this way:

     

    Form.FieldSet_test.text_field_test = "TESTE";

     

    But Give me error: -- TypeError: Cannot set property "text_field_test" of undefined to "TESTE" (#97)



  • 2.  Re: Manipulate FieldSet

    Posted Apr 23, 2015 08:56 PM

    Hi,

    try to use this:

    Form.FieldSet_test = newValueMap();

    Form.FieldSet_test.text_field_test = "TESTE";

     

    Regards,

    Milan