I am trying to integrate the Kendo Grid within a widget owned by ReactJS. My preference would be initialize this imperatively but it seems that jquery objects from react references don't have the kendo functions attached. Is it possible to use window.kendo to initialize the grid somehow or do I have to use the jquery plugin functionality?
Some code if the above doesn't make sense. This works:
window.kendo.bind($(React.findDOMNode(refs.theGrid)), viewModel);
This doesn't work, returning "Uncaught TypeError: (0 , _jquery2.default)(...).kendoGrid is not a function":
$(React.findDOMNode(refs.theGrid)).kendoGrid({...});
Alternatively, any ideas on how to get the jquery plugin functionality back from within React components?