angular-bind-html-compile icon indicating copy to clipboard operation
angular-bind-html-compile copied to clipboard

Recursive use of bind-html-compile request

Open alindberg opened this issue 9 years ago • 0 comments

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 "

{{fooBar}} }

buildDetail = function() { return "

{{item}}
"; }

alindberg avatar Aug 14 '15 17:08 alindberg