jQuery MiniUI

 找回密码
 立即注册
查看: 2481|回复: 1
打印 上一主题 下一主题

combobox控件select方法bug [复制链接]

Rank: 3Rank: 3

跳转到指定楼层
楼主
发表于 2012-10-9 14:18:11 |只看该作者 |倒序浏览
  1. <input id="testCombo" class="mini-combobox" style="width: 100px;" textfield="Text" valuefield="Value" required="true"  />
复制代码
  1.     var comboBox = mini.get('testCombo');
  2.      var data = [
  3.                  { Text: 'item0', Value: 'val0' },
  4.                  { Text: 'item1', Value: 'val1' },
  5.                  { Text: 'item2', Value: 'val2' },
  6.                  { Text: 'item3', Value: 'val3' }
  7.                ];
  8.      comboBox.setData(data);
  9.      comboBox.select(0);
  10.      mini.alert(comboBox.getText());
  11.      comboBox.select(1);
  12.      mini.alert(comboBox.getText());
  13.      comboBox.select(2);
  14.      mini.alert(comboBox.getText());
复制代码
调用select后不会清除以前的选择项

Rank: 9Rank: 9Rank: 9

沙发
发表于 2012-10-10 09:42:03 |只看该作者
已测试修复。
重新下载即可。

Archiver|普加软件

GMT+8, 2024-11-23 07:31 , Processed in 1.029554 second(s), 9 queries .

Powered by Discuz! X2

© 2001-2011 Comsenz Inc.

回顶部