Hello all,
I'm trying to create my first demo with KendoUI and I got an JS error.
I've tried on IE (doesn't works) and Chrome (works with warnings). What I'm doing wrong?
And my code is:
There is my headers:
And all files was loaded successfully.
Thanks in advance
Igor
I'm trying to create my first demo with KendoUI and I got an JS error.
I've tried on IE (doesn't works) and Chrome (works with warnings). What I'm doing wrong?
Microsoft JScript runtime error: Object doesn't support property or method 'kendoNumericTextBox'
And my code is:
<
p
><
label
for
=
"currency"
>Price:</
label
><
br
> <
input
class
=
"k-input"
id
=
"currency"
max
=
"100"
min
=
"0"
name
=
"currency"
type
=
"number"
value
=
"30"
/><
script
><
br
><
span
class
=
"Apple-tab-span"
style
=
"white-space:pre"
> </
span
>jQuery(function(){jQuery("#currency").kendoNumericTextBox({format:"c"});});<
br
></
script
><
br
> </
p
>
There is my headers:
<!-- KendoUi -->
<
link
rel
=
"stylesheet"
href
=
"/Content/kendo.common.min.css"
>
<
link
rel
=
"stylesheet"
href
=
"/Content/kendo.default.min.css"
>
<
script
src
=
"/Scripts/jquery.min.js"
></
script
>
<
script
src
=
"/Scripts/kendo.web.min.js"
></
script
>
<
script
src
=
"/Scripts/kendo.aspnetmvc.min.js"
></
script
>
And all files was loaded successfully.
Thanks in advance
Igor