Re: the React JavaScript library (http://facebook.github.io/react/)
We are trying to figure out how we can adopt React Components and still use Kendo for some UI controls, so we do not have to re-invent controls that kendo already provides.
How do we begin embedding React Components inside KendoUI components (for example, inside a KendoUI Grid), but more urgently how to embed arbitrary kendo ui controls inside React Components?
For example (hypothetical):
We are trying to figure out how we can adopt React Components and still use Kendo for some UI controls, so we do not have to re-invent controls that kendo already provides.
How do we begin embedding React Components inside KendoUI components (for example, inside a KendoUI Grid), but more urgently how to embed arbitrary kendo ui controls inside React Components?
For example (hypothetical):
var Treeview = React.createClass({ render: function() { return ( <div> Custom markup <div><!-- build kendo treeview here --></div> </div> ); }}); React.renderComponent(Treeview({ // kendo treeview plugin arguments passed here as // react component properties as an example dataSource: { data:[ /*...*/ ] }}), document.body)