您好我有以下代碼jqxListBox:基於價值部件檢查列表框項目
var source =
{
datatype: "json",
datafields: [
{ name: 'Name' },
{ name: 'ID'},
],
localdata: data
};
var dataAdapter = new $.jqx.dataAdapter(source);
$("#polistbox").jqxListBox({ source: dataAdapter, displayMember: "Name", valueMember: "ID", checkboxes: true, width: '255px', height: '100px'});
我想用值的成員,檢查一個項目。
ie)我想檢查具有價值的項目2.我可以如何實現這一目標?
我發現了以下解決方案http://jsfiddle.net/jqwidgets/vv3gK/。
但我怎麼能在我的代碼中實現這一點?