0

I edited my question because I realized that the best solution for me will be to late bind the drop down control to a property on my scope.

I'm using kendo dropdownlist with angular, and facing a problem:

How can I bind the drop down value only after the data source is filled?

1 Answer 1

1

Did you try using the k-ng-delay attribute on the drop down element?

For example,

<div ng-app="app" ng-controller="MyCtrl">
    <select kendo-drop-down-list 
            k-options="customOptions" 
            k-ng-delay="customOptions.dataSource">
    </select>
</div>

Here is a link with more information on k-ng-delay: AngularJS Introduction

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.