attributes

задает объект с атрибутами для инпута HTML внутри компонента Webix

object attributes;

Example

{ view:"text", id:'field_a', attributes:{ maxlength:10 }}
// в итоге html внутреннего инпута будет таким
// <input type='text' maxlength='10'>

Details

Webix control input generates an HTML input with a specific number of attributes. But you can define a set of extra ones (which is not generated by default).

Note that the attributes property is applied if the editable config is set to true.

Наверх