标签: jquery kendo-ui kendo-mobile
如何获取Kendo UI PopOver Checkbox ListView选定的值。我使用了this示例。感谢。
答案 0 :(得分:1)
您可以在ListView中查找已检查的项目,例如:
$('[data-role="listview"] :radio:checked').map(function () { if (this.checked == true) { console.log($(this).closest('label').text()) } });