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]"

angularjs ngswitch docs


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -