I am working on angular js project in which we are using ng-repeat to display list of strings in cell template created using custom directives.
It working fine for list of numbers. But it does not works for list of strings.
You can try by changing number to string on plunker
var viewFn = "<div>View: <span ng-repeat='x in [1,2,3]'>{{x}}</span></div>";
...
var editFn = "<div>Edit: <span ng-repeat='x in ["Hi","Hello"]'>{{x}}</span></div>";
How can I get list of string using cell template?