Angular-Kendo ComboBox placeholder text not working

后端 未结 2 1672
小鲜肉
小鲜肉 2021-01-05 11:36

I have a simple angular-kendo ComboBox on a page without an initially selected value. It should show the placeholder text in that case, but instead it\'s showing ? un

2条回答
  •  忘掉有多难
    2021-01-05 12:01

    This is somewhat related to this issue: https://github.com/angular/angular.js/issues/1019

    The solution is simple: use an instead of a app.controller('MyCtrl', function($scope) { $scope.projectData = [ {name: 'Bob', value: 1}, {name: 'Tom', value: 2} ]; $scope.projectOptions = { placeholder: "'Select...'", dataTextField: 'name', dataValueField: 'value', dataSource: { data: $scope.projectData } } });

    (demo)

提交回复
热议问题