Tutorialsplane

AngularJs Remove Table Row


AngularJs Remove Table Row – It is very easy to remove/delete the row from table, Unlike jQuery or other framework you don’t need to put much effort to remove the existing row in table. Here in this tutorial we are going to explain how you can remove the table row in AngularJs. You can use our online editor to edit and run the code online.


AngularJs Remove Table Row | Delete Table Row | Example | Demo

It is very simple to remove table row. Here we have create a simple function which will remove the row from the table.

AngularJs Remove Table Row : Delete Table Row Example




 
 

  
<div ng-app="myApp">  
<div ng-controller="myController">
<span class="amp-wp-inline-01f5cfbe2bd48c48141436de8759023a">{{message}}</span> 
<table>
<tr><th>Sample Table</th></tr>
<tr ng-repeat="content in rows">
      <td>{{content}}</td>
	  <td><a href="#" ng-click="removeRow($index, content)">Remove</a></td>
</tr>
</table>

</div> 
</div>
  
 

Try it »

Now everything is ready just run the above example to see the demo. If you run the above example it will produce the output something like this –