or
<script id="template" type="text/x-kendo-template"> #= kendo.toString(replaceString(#= Name #))#</script><script type="text/javascript"> function replaceString(value) { return value.replace(",", "<br />"); }</script>Hi,
Since KendoUI is built on jQuery, I would expect all functionalities available in jQuery to be used to the fullest in your framework.
We initialise our kendoWindow as follows:
var modalTitle = $(this).attr('data-modal-title'
var modalUrl = $(this).attr('data-modal-url'
var modalWidth = $(this).attr('data-modal-width'); $('<div></div>') .kendoWindow({ width: modalWidth, title: modalTitle, content: modalUrl, modal: true }) .data("kendoWindow") .center() .open();