如果在初始化时和dataBound之前设置Kendo组合框的选定值。 我试图在dataBound事件中附加它,但是在dataBound之后模型将设置为undefined或null。这是我在dataBound的代码
// set my defaul value here
$scope.$on("kendoRendered", function (event, widget) {
$scope.Gender = 2;
});
dataBound: function ()
{
console.log($scope.Gender); // the $scope.Gender now is empty
this.value(2); // this 2 here is female
}
还有一个小提琴
提前致谢