所以,我有几乎相同的问题,但我想我可以更清楚我的要求。
我有一个使用 SQLite 表作为数据源的 dxList。它被设置为允许用户从模板列表中选择以应用于另一个对象。这个新的模板列表和关联的对象 ID 将保存在与原始数据不同的表中,因此,我需要能够识别列表中已检查的项目。
<div data-bind="dxList: { dataSource: templateList }">
<div data-bind="dxAction: ''" data-options="dxTemplate : { name: 'item' } ">
<table>
<tr>
<td>
<div data-bind="dxCheckBox: { }"></div>
</td>
<td>
<div style="font-weight: bold; padding-left: 10px;" data-bind="text: TemplateName"></div>
</td>
</tr>
</table>
</div>
</div>
我在最初的搜索中发现了这篇文章。我不能使用每个复选框的 data-bind: {checked: ?} 值,就像找到的原始海报一样,设置全部或无。我想到了一个数组。我将尝试使用 dxAction 从数组中添加/删除选中的列表项 ID,但我不确定它的效果如何。然后是最后的解析来获取所有检查的项目。一旦我开始工作,我会更新这篇文章。
解析度:
ViewModel 对象:
selectedTemplates: ko.observableArray(),
selectTemplate: function (args) {
//If it's there. Remove it.
if (args.model.selectedTemplates.indexOf(args.itemData.TemplateID) > -1) {
args.model.selectedTemplates.pop(args.itemData.TemplateID);
args.itemElement[0].style.backgroundColor = '';
args.itemElement[0].style.color = 'Black';
}
//else Add
else {
args.model.selectedTemplates.push(args.itemData.TemplateID);
args.itemElement[0].style.backgroundColor = '#017AFF';
args.itemElement[0].style.color = 'White';
}
},
和视图:
<div data-options="dxView : { name: 'SelectSurveys', title: 'SelectSurveys' } ">
<div data-bind="dxCommand: { title: 'Save', id: 'create', action: saveSelections, icon: 'save' }"></div>
<div data-options="dxContent : { targetPlaceholder: 'content' } ">
<div data-bind="dxList: { dataSource: templateList, itemClickAction: selectTemplate }">
<div data-options="dxTemplate : { name: 'item' } ">
<div style="font-weight: bold; padding-left: 10px;" data-bind="text: SurveyName"></div>
</div>
</div>
</div>
</div>
并循环选择的值以保存到本地数据库:
$.each(args.model.selectedTemplates(), function (index, value) {
db.transaction(function (tx) {
console.log("Inserting Data");
tx.executeSql(sql, [value],
function (t, result1) {
if (result1 != null) {
console.log("New Item added." + result1.insertId);
}
},
function (t, error) {
console.log(error);
});
});
在对象中,我添加了一些颜色,这样您就可以知道选择了哪些对象,它不使用 dxSwitch 或 Checkbox,但它也可以正常工作,而且我认为它在视觉上更吸引人,并且对用户来说也更有用。