Utilizing Kendo with angular.js, I am experiencing an issue where the model does not update when the event fires after making a selection in the first dropdown list...
<input kendo-drop-down-list
id="ddServiceLocations"
k-options="ddServiceLocationsOptions"
ng-model="enterClaimsService.model.serviceLocationSelection" />
<select kendo-drop-down-list
id="ddJurisdictions"
k-options="ddJurisdictionsOptions"
k-cascade-from="'ddServiceLocations'"
ng-model="enterClaimsService.model.jurisdictionSelection"></select>
Although selecting an option triggers my dataSource
for the second dropdown, the
enterClaimsService.model.serviceLocationSelection
object remains undefined at that point. It only becomes defined once the function completes. How can I ensure the model updates before calling the data source?