angular-bind-html-compile
angular-bind-html-compile copied to clipboard
Recursive use of bind-html-compile request
First, thanks to all who have worked on this directive! I works like a charm.
I need to use this in a recursive manner. I am building a table from several data sets and would like to use bind-html-compile in both the 'root' html form, but also in the created forms created by the function serviced by the directive. As an example the 'buildRow' function calls 'buildDetail', each of which requires angular data binding
index.html:
buildRow = function() { return "
buildDetail = function() { return "
{{item}}
";
}