我的数据列表视图网格结构是这样的。
<div id="listView">
<div class="product"><h3>India</h3></div>
<div class="product1"><h3>Gujarat</h3></div>
<div class="product"><h3>Surat</h3></div>
</div>
我想设置数据源具有类 product1 的新数据。
前任。喜欢
<div class="product1"><h3>Gujarat</h3></div>
我想把古吉拉特邦改成其他名字。
我在下面的代码中使用,但这只设置了第一个元素而不检查特定的类。
var firstItem = $('#listView').data().kendoListView.dataSource.data()[0];
firstItem.set('name','The updated Name');
如果您知道,请回复解决方案。