I have a QueryBuilder bound to a remote datasource based on entity framework data.
For example, i have a ORDER entity with a CUSTOMER navigation property.
I'm not able to add column from related (child) entities, such as CUSTOMER.NAME.
When i select the field, the operator dropdown is not populated and i have an error in the console:
Uncaught TypeError: Cannot read property 'length' of undefined
at t.changeRule (ej2.min.js:1)
at t.changeField (ej2.min.js:1)
at e.notify (ej2.min.js:1)
at t.e.trigger (ej2.min.js:1)
at t.detachChangeEvent (ej2.min.js:1)
at t.onChangeEvent (ej2.min.js:1)
at t.setSelection (ej2.min.js:1)
at t.onMouseClick (ej2.min.js:1)
t.changeRule @ ej2.min.js:1
t.changeField @ ej2.min.js:1
e.notify @ ej2.min.js:1
e.trigger @ ej2.min.js:1
t.detachChangeEvent @ ej2.min.js:1
t.onChangeEvent @ ej2.min.js:1
t.setSelection @ ej2.min.js:1
t.onMouseClick @ ej2.min.js:1
I have bound the same source to a DataGrid control and it correclty supports related entities showing and filtering.