So knockout-kendo has a option called data and knockout-kendo has a property called dataSource. What's the difference between the two and how do both interact with one another/change when I specify both a data and a datasource on the kendogrid of different values
相关问题
- implementing html5 drag and drop photos with knock
- knockout checked binding doesn't update
- Foreign key column sorting
- Knockout JS - Binding to array of observable Ints
- Kendo UI bind drop down value from PopupEditor
相关文章
- Kendo Ui Dropdownlist Set Visible via Javascript
- Handle IE 9 & 10's clear button with Knockout
- jQuery Chosen doesn't update select options wh
- KnockoutJS property doesn't update when changi
- knockout.js - data-bind text default value
- Setting default values for computed Observable Kno
- How to change view date dynamically (which is filt
- Kendo DropDownList Shows DataValueField Prior to D
As of version 0.6.2, you can pass either the actual data, dataSource config, or an existing Kendo dataSource (kendo.data.DataSource) in for the
data
option.In older versions, you would sometimes have to pass
null
fordata
and then pass in your existing dataSource in thedataSource
option.So, at this point you should be fine with just using
data
.