i have a list view and it is getting populated with remote data, the kendoPage with the exact same datasource comes
back as no items to display.
HTML
<
div
class
=
"layout-section"
>
<
div
id
=
"layoutView"
></
div
>
<
div
id
=
"pager"
class
=
"k-pager-wrap"
></
div
>
</
div
>
<
script
type
=
"text/x-kendo-template"
id
=
"template"
>
<
div
class
=
"product"
>
<
img
src
=
"#= Layoutfilepath #"
alt
=
"#= LayoutName # Layout"
/>
<
h3
>#=LayoutName# Layout</
h3
>
<
p
>#:kendo.toString("Select Layout")#</
p
>
</
div
>
</
script
>
Scripting
var
layouts2 =
new
kendo.data.DataSource({
transport: {
read: {
url:
"Default.aspx/GetLayouts"
,
contentType:
"application/json; charset=utf-8"
,
type:
"POST"
,
dataType:
"json"
}
},
schema: {
data:
"d"
},
pageSize: 1
});
$(
"#layoutView"
).kendoListView({
dataSource: layouts2,
template: kendo.template($(
"#template"
).html()),
selectable:
"single"
});
$(
"#pager"
).kendoPager({
dataSource: layouts2
})
Any thoughts