How to auto change the label color

Hi My form have Field Type: Text. Want to change label color by some condition  show user this text are required. I use java script  document.getElementById setting style ,but  need to setting "id" . I don't know how to setting "id" in aras object ? Have another better way to do required field?  
Parents
  • Hi Michelle, Try this, where the highlighted value is the name of your field. var field_div = document.getElementsByName("name")[0]; var label = field_div.getElementsByClassName("sys_f_label")[0]; // some logic here to decide color label.style.color = "red"; This code gets the div that contains all of the field's components, and then retrieves the element inside that div with the class the client uses for styling labels. Eli
    Eli Donahue Aras Labs Software Engineer
Reply
  • Hi Michelle, Try this, where the highlighted value is the name of your field. var field_div = document.getElementsByName("name")[0]; var label = field_div.getElementsByClassName("sys_f_label")[0]; // some logic here to decide color label.style.color = "red"; This code gets the div that contains all of the field's components, and then retrieves the element inside that div with the class the client uses for styling labels. Eli
    Eli Donahue Aras Labs Software Engineer
Children
No Data