getValues

gets data object

void getValues();

Example

webix.ui({
    view:"template",
    id:"template1",
    data:{
        src:"imgs/image002.jpg"
    }
});
 
var values = $$("template1").getValues(); //{src:"imgs/image002.jpg"}

See also
Back to top