0
如何獲取Kendo UI PopOver複選框ListView選定的值。我已經使用了this的例子。謝謝。如何獲得Kendo UI PopOver ListView選定值
如何獲取Kendo UI PopOver複選框ListView選定的值。我已經使用了this的例子。謝謝。如何獲得Kendo UI PopOver ListView選定值
你可以看爲ListView內部檢查的項目像這樣的例子:
$('[data-role="listview"] :radio:checked').map(function() {
if (this.checked == true) {
console.log($(this).closest('label').text())
}
});