Angularized Combobox

Hi,

I’m trying to insert a “combo” directive:

div webix-ui type=“space” >
div view=“combo” webix-options=“comboOptions” webix-label=“test” value=“1” yCount=“3”>/div>
div webix-ui=“comboConfig” webix-options=“comboOptions” webix-value=“comboValue” >/div>
/div>

where in the controller

$scope.comboOptions = [{id: 1, value: “One”},{id: 2, value: “Two”},{id: 3, value: “Three”}];
$scope.comboValue = “Two”;
$scope.comboConfig = {
view:“combo”,
id:‘field_t’,
value: ‘One’,
options: [{id:1,value:“One”},{id:2,value:“Two”}],
label: 'Invalid Notes: ',
yCount:“3”
};

Both of which generate the following error:
TypeError: Cannot call method ‘getChildViews’ of null

Any suggestions as to what I might do to get this to work?

Note: I had to remove the “<” in front of the div elements so that the above html wouldn’t get striped from this message