kendo-labs / knockout-kendo

A project to create a robust set of Knockout.js bindings for the Kendo UI widgets.
http://kendo-labs.github.com/knockout-kendo/
273 stars 144 forks source link

Support for newer Kendo controls #257

Open bzamfir opened 6 years ago

bzamfir commented 6 years ago

Hi,

I'd like to ask if there is any plan for new version to support newer kendo controls, like DropDownTree https://demos.telerik.com/aspnet-ajax/dropdowntree/examples/functionality/checkboxes/defaultcs.aspx

Also, please update the nuget package with newer versions. The last one available as nuget is 0.9.7 from few years ago.

Thank you

cknoop commented 4 years ago

multicolumncombobox

bmsmg commented 4 years ago

These bindings are actually quite simple to create on your own. I would recommend starting with something somewhat similar; in this case use ComboBox as a starting point (https://github.com/kendo-labs/knockout-kendo/blob/master/src/knockout-kendoComboBox.js). From there you only need to give the binding a new name (kendoMultiColumnComboBox) then add the properties you need, which would probably be just columns. You can call createBinding from your own js with ko.kendo.bindingFactory.createBinding.

cknoop commented 4 years ago

@bmsmg Hey nice, thanks for the tip!