Hi,
I'm new with KendoUI and I've downloaded the evaluation of KendoUI. I tried to create a simple window using the blueopal theme. The windows comes up and is positioned correctly but it doesn't seem to be themed right. Firstly, even without using the blueopal theme I seem to be missing:
In my html I included the following:
The window that comes up looks like the attached photo.
Can you please advice where I can get the missing images from and how I can fix my theme issue?
Thanks for your help,
Valanto
I'm new with KendoUI and I've downloaded the evaluation of KendoUI. I tried to create a simple window using the blueopal theme. The windows comes up and is positioned correctly but it doesn't seem to be themed right. Firstly, even without using the blueopal theme I seem to be missing:
- http://localhost:9000/public/stylesheets/external/kendoui/Kendo/sprite.png
- http://localhost:9000/public/stylesheets/external/kendoui/Kendo/gradient.png
$(
"a.inDialog"
).live(
"click"
,
function
(e){
e.preventDefault();
$(
this
).after(
"<div id='openDialog'></div>"
);
$(
"#openDialog"
).kendoWindow({
theme:
"blueopal"
,
title: $(
this
).attr(
"title"
),
content: $(
this
).attr(
"href"
),
width:
"500px"
,
height:
"300px"
}).data(
"kendoWindow"
);
var
window = $(
"#openDialog"
).data(
"kendoWindow"
);
window.center();
});
In my html I included the following:
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"/public/stylesheets/external/kendoui/kendo.common.min.css"
charset
=
"utf-8"
></
link
>
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"/public/stylesheets/external/kendoui/kendo.kendo.min.css"
charset
=
"utf-8"
></
link
>
<
script
type
=
"text/javascript"
language
=
"javascript"
charset
=
"utf-8"
src
=
"/public/javascripts/external/jquery-1.7.1.min.js"
></
script
>
<
script
type
=
"text/javascript"
language
=
"javascript"
charset
=
"utf-8"
src
=
"/public/javascripts/external/kendoui/js/kendo.all.min.js"
></
script
>
<
script
type
=
"text/javascript"
language
=
"javascript"
src
=
"/public/javascripts/external/kendoui/js/kendo.window.min.js"
></
script
>
The window that comes up looks like the attached photo.
Can you please advice where I can get the missing images from and how I can fix my theme issue?
Thanks for your help,
Valanto