HI support,
I have a jQuery Custom widget, how to initialize that widget in Kendo Grid cell using the template?
This is my Template
and Kendo Grid initialization
I have a jQuery Custom widget, how to initialize that widget in Kendo Grid cell using the template?
This is my Template
<
script
id
=
"IDCOL-tmpl"
type
=
"text/x-kendo-tmpl"
>
<
div
class
=
"IDCOL"
>
<
script
type
=
"text/javascript"
>
$('.IDCOL').Block();
{{html "</
sc
"+"ript>"}}
</
div
>
</
script
>
and Kendo Grid initialization
$("#container").kendoGrid({
..........
columns : [{
title : "ID",
template : kendo.template($("#IDCOL-tmpl").html())
}, "StartTime", "EndTime"]
});
This is the error:
"Microsoft JScript runtime error: Could not complete the operation due to error 80020101.") in globalEval (which is in jquery-1.7.1.js)