DevExpress PhoneJS supports partial views that allow you to share and reuse similar HTML markup among multiple views. I need this feature right now in Kendo UI Mobile... I'm thinking about doing some kind of work around possibly with Templates or a jQuery Clone method call but it's going to be pretty hacky... Does Kendo UI Mobile have something similar to this already: DevExpress's PhoneJS Partial Views are described here under Flexible View Rendering Engine: http://phonejs.devexpress.com/ This is what I need: http://phonejs.devexpress.com/Documentation/Howto/Views_and_Layouts?version=13_2#Add_a_Partial_View Thank, Nathan
Please report this case via the forums or support system on telerik.com. Thus my colleagues from the support team will assist you accordingly. Assuming that the general advice I provided works for you, I'm closing this case.
Thank you for the proposal. Note that presently you can utilize the kendo.Layout object in order to render/reuse other views inside existing layout/view. See this documentation article for more info: http://docs.telerik.com/kendo-ui/getting-started/framework/spa/layout Does this serve the purpose you are after?
Thank you I'm trying this now... The only problem I'm running into is getting the proper classes and styling to be applied to the items in the view template after it's rendered and appended to another view... For example: <script id="index" type="text/x-kendo-template"> <a data-icon="cart" data-role="button">Buy Something</a> </script> <div id="app"></div> <!-- When I go to render this template the Data Init doesn't seem to be adding the proper classes to tell it that this should be rendered as a button: --> <script> var index = new kendo.View('index'); $("#app").append(index.render()); </script> Thanks! Nathan