是否可以更改计数器的宽度?

Is it possible to change the width of the counter?

我有 Webix ui.counter 控件,似乎它对 width 属性:

没有响应
webix.ui({
  view: "counter",
  value: 1234567,
  width: 300
});

它给出了一个默认宽度的计数器(最多显示 5 位数字)。这是一个错误还是我错过了什么?

片段:http://webix.com/snippet/e2d461a6

很奇怪 inputWidth 不起作用。

但这里有一个解决方法:覆盖选择器 .webix_el_counter .webix_inp_counter_value 的默认宽度 40px。检查 css 以添加更多样式。

<style>
  .webix_el_counter .webix_inp_counter_value{
    width: 100px;
  }
</style>

工作示例http://webix.com/snippet/47cbb6c9