Angular Adding Table New Rows Dynamically
Today, We want to share with you Angular Adding Table New Rows Dynamically.
In this post we will show you angularjs Adding New Rows Dynamically table row, hear for Add Table Row Dynamically we will give you demo and example for implement.
In this post, we will learn about Add or Remove Table Rows Dynamically in AngularJS with an example.
Welcome to the In infinityknow.com website! You will Step By Step learn web programming, easy and very fun. This website allmost provides you with a complete web programming tutorial presented in an easy-to-follow manner. Each web programming tutorial has all the practical examples with web programming script and screenshots available.
AngularJS simple Grid directive is all data populated with same data values from a local data values or remote data values source file in bulk,
data loading the data simply partially or load to in whole at one time in url.
Example : Example of AngularJS – Adding row/Removing row Table Rows Dynamically
index.html
[php]
Players Information Form
List Of Indian Cricketer Team
Player ID | Player Name | Player Information | Player Address |
---|---|---|---|
{{$index + 1}} | {{player.playername}} | {{player.playerinfo}} | {{player.playeraddress}} |
[/php]
controller.js
[php]
var infinityknowApp = angular.module(“infinityknowApp”, []);
infinityknowApp.controller(“infinityknowCtrl”, function($scope)
{
$scope.playersinfo = [
{ ‘playername’:’Virat kohali’,
‘playerinfo’: 982567584,
‘playeraddress’: ‘surat’},
{ ‘playername’:’virendra sehwang’,
‘playerinfo’: 997485699989,
‘playeraddress’: ‘hidden garden’},
{ ‘playername’:’m s dhoni’,
‘playerinfo’: 98568565600,
‘playeraddress’: ‘jamuu kashmir’},
{ ‘playername’:’happys jayus patel bro (hjp)’,
‘playerinfo’: 87599985200,
‘playeraddress’: ‘ganesh park’},
{ ‘playername’:’sahid afridi’,
‘playerinfo’: 87585220220,
‘playeraddress’: ‘pakistan’},
];
$scope.addPlayer = function()
{
$scope.playersinfo.push({ ‘playername’:$scope.playername, ‘playerinfo’: $scope.playerinfo, ‘playeraddress’:$scope.playeraddress });
$scope.playername=”;
$scope.playerinfo=”;
$scope.playeraddress=”;
};
});
[/php]
http://plnkr.co/edit/VJSO588pXYBc72mC0sfg?p=preview