I am trying to compile html in my directive to move into a table via jquery.
For some reason my $compile does not grab this whole string, it just grabs the repeat directive.
If I remove the <tr ng-repeat...> it will grab the remaining string though.
var el = $compile('<tr ng-repeat="row in gotData" ><td>{{row["data"]}}</td> <td>{{row["moredata"] % 5 |number:3}}</td> <td>{{row["moredata2"] % 5 | number:3}}</td><td>{{row["moredata3"] % 5 | number: 3}}</td><td>{{row["moredata"] % 5 | number: 3}}</td></tr>')(scope)
I am logging the 'el' and I can see that it is lacking the complete string, it just has the the repeat directive located here in this key:
el['0']['data']
hoping this is possible.