angularjs - Child popup tr + angular Js -
my requirement same in jsfiddle repeat tbody
instead of tr
can provide me same repeated tr
not tbody
. http://jsfiddle.net/pixic/vggbq/ have changed ng-repeat tbody
tr
did not work. please me. i'm new angular js.
<tbody data-ng-switch on="daydatacollapse[$index]"> <tr data-ng-repeat="storedata in storedatamodel.storedata" class="clickablerow" title="click toggle collapse/expand day summaries store." data-ng-click="selecttablerow($index, storedata.store.storeid)" > <td>{{storedata.store.storeid}}</td> <td>{{storedata.store.storename}}</td> </tr> </tbody>
you have data-ng-switch directive, no 1 ng-switch-when or ng-switch-default, try run without expression: data-ng-switch on="daydatacollapse[$index]"
Comments
Post a Comment