You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can anyone please help me to generate the dynamic < td >s in the table?
Not working:
< tbody>
< tr>
< td ng-repeat="col in columns">
{{ col }}
< /td>
< /tr>
< /tbody>
However, ngRepeat for other tags is working:
< tbody>
< tr>
< td>
< p ng-repeat="col in columns">
{{ col }}
< /p>
< /td>
< /tr>
< /tbody>
The text was updated successfully, but these errors were encountered:
Thanks a lot man, it worked for < td>s
But I'm facing issues while generating < th>s using ngRepeat. I'm able to generate the < th>s dynamically using ngRepeat, but the issue is with column drag.
When I'm trying to drag a column I'm getting:
TypeError: Failed to execute 'appendChild' on 'Node': parameter 1 is not of type 'Node'.
Hello,
Can anyone please help me to generate the dynamic < td >s in the table?
Not working:
< tbody>
< tr>
< td ng-repeat="col in columns">
{{ col }}
< /td>
< /tr>
< /tbody>
However, ngRepeat for other tags is working:
< tbody>
< tr>
< td>
< p ng-repeat="col in columns">
{{ col }}
< /p>
< /td>
< /tr>
< /tbody>
The text was updated successfully, but these errors were encountered: