как справочники парсить на комбобокс в Webix-jet

webix jet развернул проект в моделях создал аякс рест служба формирует и возвращает json , как этот json задать на richSelect?

define([
    "models/genderDirectory"
],function(genderDirectory){

var jobSearchForm={    
    view: "form",
    autoWidth: true,
    autoHeight: true,
    id: "mainForm",
    css: "mainForm",
    elementsConfig: {labelPosition: "top", labelAlign: "left"},
    elements: [
     rows:[
     {
                            view: "multiselect",
                            label: "Пол",
                            width: 180,
                            css: "mainFormInput",
                            placeholder: "Пол",
                            name: "genders",
                            suggest: {
                                buttonText: "Выбрать", button: "Approve",
                                body: {template: "#nameRu#", data: genderDirectory.genders}
                            }
                        },
]
]
}

return {
        $ui: jobSearchForm,
        $oninit: function(view){
            view.parse(genderDirectory.genders);
        }
    };

I’m not quite sure that I’ve got the question right. Possibly you can solve the problem by using DataCollection as the datasource for the richselect:

http://webix.com/snippet/f7016104