in an Angularjs controller i have the following function:
function colorDropDownEditor(container, options) {
$('<input data-text-field="Myobject" data-value-field="Referente" data-bind="value:' + options.field + '"/>')
.appendTo(container)
...
...
Now my question is: how angularjs can execute the jquery method? How can interpret the "$" symbol?
Thanks