Currently, I have implemented AngularJS multi select drop down functionality on my website. The code for this can be found at the following source: MultiSelectDropDown
In my HTML page, I have included the same drop down twice and I want to customize the default selected names for each. Specifically, I would like the first multi select drop down to display "Projects" as the default selected name, and the second one to display "Environments."
The multiselect.js file contains a directive where scope.header
is currently set to "Select" by default. I am looking to update this default name to "Projects" and "Environments" respectively, either directly in the HTML syntax or by updating the value of scope.header from the controller.
If anyone could assist me in making these modifications, it would be greatly appreciated.