$$("order-form").addView({ view:"combo", name:"station", placeholder:"select", id:"station", options:{
view:"suggest",
filter:function(obj, value){
return obj.name.toLowerCase().indexOf(value.toLowerCase()) != -1;
},
body:{
view:"list",
data:marks,
id:"marka3",
template:"code #code# , #name#",
yCount:7, datatype:"myjson2",
},
},
how make filter with code and name together ? now filter only .name thx.