or
SCRIPT438: Object doesn't support property or method 'value'
kendo.web.min.js, line 8 character 75690
<
input
name
=
"photos"
id
=
"photos"
type
=
"file"
data-role
=
"upload"
/>
column.Bound(c => c.ActiveBaseQuote.Amount);
column.Bound(c => c.Amount);
function
titleFilter(element) {
element.kendoAutoComplete({
dataSource: titles
});
}
<
img
id
=
"login-badge"
src
=
"..."
data-role
=
"touch"
data-hold
=
"didTapHold"
/>
<
img
id
=
"login-badge"
src
=
"..."
data-role
=
"touch"
data-bind
=
"???: viewModelDidTapHold"
/>
$(function () {
$("a.subLinkMadeInAGrid").click(function () {
//Do something with this item
});
1.
viewModel = kendo.observable({
2.
anArray: [
'item1'
,
'item2'
,
'...'
],
3.
filteredArray:
function
() {
4.
return
this
.get(
'actions'
).filter(
function
(el) {
5.
return
someLogic(el);
6.
});
7.
}
8.
});
1.
<
script
id
=
"row-template"
type
=
"text/x-kendo-template"
>
2.
<
tr
>
3.
[...]
4.
<
td
><
select
data-bind
=
"source: availableDescriptions, value: Description"
/></
td
>
5.
</
tr
>
6.
</
script
>
1.
filteredArray:
function
() {
2.
var
a =
this
.get(
'actions'
).filter(
function
(el) {
3.
return
doSomething(el);
4.
});
5.
a.parent =
function
() {
return
this
; };
6.
return
a;
7.
}