• JavaScript Controller copy one field to another before blanking the first field

    field_one is a drop down and field_two is a varchar. I want to be able to pick a value in field_one , have it populate field_two and then clear out field_one . Sounds simple enough. So I run this code in the on change event: this.model.set(' field_two…
  • How do I dynamically change a list on a CreateView

    I want to change the list of status on the Case create view based on a selection made from a drop down list and the role of a user. I currently have code running which should do this. It will successfully fire when the form is initiated but it does not…