Based on the query , i am able to select a preselect a value --- Preselect a value in a dropdown using knockout
Once the drop down value is getting changed i need to update the 'PrimarySiteUsers observable collection with the newly selected value.
Please let me know for any help.
What you're looking for is a subscription. These will watch the specified observable and run whenever the observable is changed. They pass in the new value to whatever function you specifiy. Here is a short, albeit useless example.