作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道如何在 Kendo 移动 ListView 中获取所选项目的索引。这是我的代码
function loadInformation(){
$('#Template').kendoMobileListView({
dataSource: Info,
template: '<table style="width: 100%"><tr><td><p>${a = (typeof data.ServiceLocationCompanyName !== "undefined") ? data.ServiceLocationCompanyName : data.LastName + ", " + data.FirstName}</td><td style="width: 84px"><img src=${data.Icon} /></td></tr></table>',
// Added this event to capture the index of selected Item but was unsuccessful
click: function(){
var index = this.select().index(),
console.log(index);
}
});
当我运行它时,它给我一个错误提示
TypeError: Object [object Object] has no method 'select'
我需要在这里做什么?如何获取所选项目的索引?干杯
最佳答案
尝试一下:
function loadInformation(){
$('#Template').kendoMobileListView({
dataSource: Info,
template: '<table style="width: 100%"><tr><td><p>${a = (typeof data.ServiceLocationCompanyName !== "undefined") ? data.ServiceLocationCompanyName : data.LastName + ", " + data.FirstName}</td><td style="width: 84px"><img src=${data.Icon} /></td></tr></table>',
// Added this event to capture the index of selected Item but was unsuccessful
click: function(e){
var index = $(e.item).index();
var text = $(e.item).text();
console.log('selected item contains text: ',text,' and its index is: ',index);
}
});
}
关于kendo-ui - 如何在 KendoMobileListView 中获取所选项目的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12368467/
我想知道如何在 Kendo 移动 ListView 中获取所选项目的索引。这是我的代码 function loadInformation(){ $('#Template').kendoMobileLi
我想知道如何在 Kendo 移动 ListView 中获取所选项目的索引。这是我的代码 function loadInformation(){ $('#Template').kendoMobileLi
在 kendoMobileListView 列表中选择项目并刷新列表中的数据后,如何清除(清空)可过滤输入字段? 我尝试在单击事件后手动清空输入字段并刷新 ListView 数据,如下所示: $myL
我是一名优秀的程序员,十分优秀!