【问题标题】:How to get Kendo UI PopOver ListView selected values如何获取 Kendo UI PopOver ListView 选定值
【发布时间】:2014-03-07 06:29:07
【问题描述】:

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

【问题讨论】:

    标签: jquery kendo-ui kendo-mobile


    【解决方案1】:

    您可以像这样在 ListView 中查找选中的项目,例如:

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2014-07-05
      • 1970-01-01
      • 2017-05-30
      • 1970-01-01
      • 1970-01-01
      • 2017-08-15
      • 1970-01-01
      相关资源
      最近更新 更多