如何获取Kendo UI PopOver ListView选定的值

时间:2014-03-07 06:29:07

标签: jquery kendo-ui kendo-mobile

如何获取Kendo UI PopOver Checkbox ListView选定的值。我使用了this示例。感谢。

1 个答案:

答案 0 :(得分:1)

您可以在ListView中查找已检查的项目,例如:

$('[data-role="listview"] :radio:checked').map(function () {
  if (this.checked == true) {
    console.log($(this).closest('label').text())
  }
});