重新加载ui.select的选项

时间:2016-11-11 10:07:00

标签: javascript html html-select webix

我已经知道如何重新定义Webix ui.rixhselect / ui.combo的选项。基本上,它看起来像:

richselect.getList().clearAll();   
richselect.getList().parse(options_data)

但是如何更改ui.select的选项呢?使用相同的方法,我收到以下错误:“ Uncaught TypeError:$$(...)。getList不是函数”:

http://webix.com/snippet/e8e9a469

如何在ui.select中加载新选项?提前谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用

richselect.define("options", newdata);
richselect.render();

.render API将使用新的选项集重新绘制控件