Hi,
I'm trying to build a custom widget in TypeScript based on the multiselect. However I found out that mvvm databinding is only working properly if I do something like:
kendo.data.binders.widget.multiselectcustom = kendo.data.binders.widget.multiselect;
(example can be found here: http://stackoverflow.com/questions/19710032/extending-multiselect-widget-breaks-value-binding-in-mvvm).
My widget works if I do the entire widget in Javascript, but not in TypeScript, since "kendo.data.binders" is not defined in the d.ts file (and thus the complilation fails).
How can I get this to work?