Disable and Enable Multi Value List

Hi Team

How to disable  and enable the multi value list in ARAS 

  • Hello,

    You can look at this blog post for some examples of how to disable the various fields in a Form.

    Essentially, every field can be disabled in two steps:

    1. Get the field element by using code like  var input = getFieldByName("YOUR_FIELD_NAME");
    2. Disable the field based on what kind of input the field supports input.getElementsByTagName("INPUT_TYPE")[0].disabled = true;

    The multi-value list fields use a select node as input, so you can disable the field by using input.getElementsByTagName("select")[0].disabled = true;

    Chris

    Christopher Gillis

    Aras Labs Software Engineer