Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Telerik
Build great .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
Support and Learning
Productivity and Design Tools
Basically you should just add ListView control inside Kendo Window content and open the window. Please check the example below: Html:
<
div
id
=
"windowId"
>
<!-- Window content -->
"listView"
></
</
<!-- ListView template -->
script
type
"text/x-kendo-tmpl"
"template"
class
"twit"
a
"t-link"
href
"http://www.twitter.com/${from_user}"
title
"${from_user}"
><
img
width
"48"
height
src
"${profile_image_url}"
alt
/></
p
>${text}</
//ListView dataSource
var
dataSource =
new
kendo.data.DataSource({
transport: {
read: {
url:
"http://search.twitter.com/search.json"
,
contentType:
"application/json; charset=utf-8"
type:
"GET"
dataType:
"jsonp"
data: {
q:
"#kendoui"
}
},
schema: {
data:
"results"
total:
"results_per_page"
});
//ListView initialize
$(
"#listView"
).kendoListView({
dataSource: dataSource,
template: kendo.template($(
"#template"
).html())
mywindow =
""
;
// window initializing
mywindow = $(windowId).kendoWindow({
actions: [
"Close"
],
draggable:
true
height:
"550px"
modal:
resizable:
title:
"ListView inside KendoWindow"
width:
"650px"
visible:
false
//Open the initialized Window on button click
function
openWindow()
{
if
($(windowId).data(
"kendoWindow"
)) {
window = $(windowId).data(
)
window.center();
window.open();