我在上面给出的链接中,麻烦您修改第5行到第11行的代码。如下
var products = [
{ id: 0, name: 'Widget', unitPrice: 23.43 },
{ id: 1, name: 'Gadget', unitPrice: 12.33 },
{ id: 2, name: 'Doohickey', unitPrice: 53.07 },
{ id: 3, name: '中国1', unitPrice: 53.07 },
{ id: 4, name: '中国1', unitPrice: 53.07 },
];
上段代码的目的是:让下拉框中出现重名的两个“中国1”
然后操作Grid的Product列。比如说,您现在修改第三行的Product列为“3 中国1 $53.07”;接下来修改第四列的Product列为“4 中国1 $53.07”。最后观察第三行的Product列的选中值是否还是最初选的“3 中国1 $53.07”,亦或是“4 中国1 $53.07”。 |