I an a newbie on angularjs. I passed the model from the controller to the view with the following line
@using Forloop.HtmlHelpers
@model Lga.Cms.Core.Dtos.ContentListDto
In my angular table first few lines, i have the following
<div id="productListing">
<table class="table-responsive">
<thead></thead>
<tbody>
<tr ng-repeat="product in productlist">
from the @model declaration, how do I assigned the collection in Model to productlist so it will contain the array of DTO? So far, I can see anything in productlist
Thanks for any help.