webix

[webix] input readonly

xemaker 2020. 7. 31. 10:26

webix에서 input type="text" 에 readonly를 하려고 했는데 어려웠다.

이런저런 삽질을 하다가 마침내 알게 되었다.

webix.ui({
  container:"c",
  id:"id",
  view:"text",
  type:{width:"auto"}
});

이렇게 있다고 했을때

$$("id").define("readonly",true);
$$("id").refresh();

이렇게 하면 된다.

refresh()를 하지 않으면 안된다.