我正在使用带有angular.js的Kendo,所以在我的第一个下拉列表中,我有一个模型,它确实捕获了选择,但由于某种原因,当事件触发时,模型还没有更新..
<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>
当在第一个框中进行选择时,它会为第二个框触发dataSource
,但此时enterClaimsService.model.serviceLocationSelection
对象未定义?当该函数退出时,模型定义没有问题。如何在调用数据源之前让模型更新?