In webix there is a combo panel there I transfer json :

 view: "combo", label: "Выберите систему", width: 150, required: true, invalidMessage: "Заполните", id: "systemId", name: "systemId", yCount: "2", value: 'name', options: "/adminstrator/ws/person/systemCombo" 

json comes in this form:

 [{"hSystemId":1,"name":"CBD"},{"hSystemId":2,"name":"EAPP"}] 

but name cannot display instead of displayValue .

    1 answer 1

    If you pass in json both ID and name, then in value it is necessary to specify the ID, and not the name, by analogy with the select component.

    Example: http://webix.com/snippet/3b01f90b