or
<script type=
"text/kendo"
id=
"territoriesTemplate"
>
<ul>
#for(var i = 0; i < Territories.length; i++){#
<li>
#:Territories[i].TerritoryName#</li>
#}#
</ul>
</script>
function
serializeArray(prefix, array, result) {
for
(
var
i = 0; i < array.length; i++) {
if
($.isPlainObject(array[i])) {
for
(
var
property
in
array[i]) {
result[prefix +
"["
+ i +
"]."
+ property] = array[i][property];
}
}
else
{
result[prefix +
"["
+ i +
"]"
] = array[i];
}
}
}
<script type=
"text/kendo"
id=
"territoriesTemplate"
>
<ul>
#for(var i = 0; i < Territories.length; i++){#
<li>
#:Territories[i].Regions#</li>
#}#
</ul>
</script>
$(
"#showSelection"
).bind(
"click"
,
function
() {
var
checked = [];
for
(
var
i
in
checkedIds){
if
(checkedIds[i]){
checked.push(i);
}
}
//Code goes here
});
});
What I'd like to suggest is to build a general purpose tooltip (templates are cool!), that:
Did I miss any feature or ist there no way to achive my goals (poitioning and showing all data) at this time?
Best regards
Dirk