That worked indeed. Thank you. From: Prabhjyot Singh Reply-To: <users@zeppelin.incubator.apache.org> Date: Wednesday, November 18, 2015 at 11:55 PM To: <users@zeppelin.incubator.apache.org> Subject: Re: ng-repeat in %angular
Hi Jeff, Can you use "Array" instead of "List", that works for me. On 19 November 2015 at 13:13, Jeff Steinmetz <jeffrey.steinm...@gmail.com> wrote: Any thoughts on why the example below only displays the first item in the list, “lisa”, followed by an empty object, then stops? or specifically: lisa {} The two notebook paragraphs (first %spark, then %angular) are: %spark val friends = List("lisa","jeff","mary","sun") z.angularBind("friends", friends) %angular <div ng-repeat="f in friends"> <div>{{f}}</div> </div> -- Thankx and Regards, Prabhjyot Singh