How to edit object from array in AngularJS
Hi i am beginner in AngularJS and i am trying to edit array object using below code and my modal form having save and cancel buttons
As per my requirement when i click on save button then only object need to update and if i click on cancel button it should not update but using my below code even when i not tap on save button its automatically updating
How can i do my requirement? as like what i want an also suggest the way i am writing code is good or not
add_user.html
<div>
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">New User Registration</h4>
</div>
<div class="modal-body">
<form class="form-horizontal">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Username</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Username" ng-model="newUser.username">
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Email" ng-model="newUser.email">
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Full Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Full Name" ng-model="newUser.fullName">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="button" class="btn btn-default" data-dismiss="modal" ng-click="saveUser();">Save</button>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" ng-click="close()">Close</button>
</div>
</div>
app.js
var app = angular.module('myApp', ['ui.bootstrap']);
app.controller('myController', ['$scope', '$uibModal', '$log',
function ($scope, $uibModal, $log)
$scope.newUser = ;
$scope.info = "";
$scope.users = [
username: "rimon", fullName: "Md. Mamunur Rashid Rimon", email: "rimonmath@gmail.com" ,
username: "shamim", fullName: "Md. Tamim Hossain", email: "shamim@gmail.com" ,
username: "tamim", fullName: "Tamim Iqbal", email: "tamim@gmail.com"
];
$scope.addUser = function ()
var modalInstance = $uibModal.open(
templateUrl: 'add_user.html',
controller: 'ModalInstanceCtrl',
resolve:
items: function ()
return $scope.users;
);
modalInstance.result.then(function (selectedItem)
$scope.selected = selectedItem;
, function ()
$log.info('Modal dismissed at: ' + new Date());
);
$scope.editUser = function (index)
var modalInstance = $uibModal.open(
templateUrl: 'add_user.html',
controller: 'EditInstanceCtrl',
resolve:
user: function ()
var obj =
arrayList: $scope.users,
position: index
return obj;
);
modalInstance.result.then(function (selectedItem)
$scope.selected = selectedItem;
, function ()
$log.info('Modal dismissed at: ' + new Date());
);
;
$scope.deleteUser = function ()
console.log($scope.users.indexOf($scope.clickedUser));
$scope.users.splice($scope.users.indexOf($scope.clickedUser), 1);
$scope.info = "User Deleted Successfully!";
;
$scope.clearInfo = function ()
$scope.info = "";
;
]);
angular.module('myApp').controller('ModalInstanceCtrl', ['$scope', '$uibModalInstance', 'items',
function ($scope, $uibModalInstance, items)
$scope.saveUser = function ()
$scope.users = items;
$uibModalInstance.close();
$scope.users.push($scope.newUser);
$scope.info = "New User Added Successfully!";
$scope.newUser = ;
;
$scope.close = function ()
$uibModalInstance.dismiss('cancel');
;
]);
angular.module('myApp').controller('EditInstanceCtrl', ['$scope', '$uibModalInstance', 'user',
function ($scope, $uibModalInstance, user)
$scope.newUser = user.arrayList[user.position];
$scope.users = user.arrayList;
$scope.saveUser = function ()
$scope.users[user.position] = $scope.newUser;
$uibModalInstance.close();
;
$scope.close = function ()
$uibModalInstance.dismiss('cancel');
;
]);
angularjs
add a comment |
Hi i am beginner in AngularJS and i am trying to edit array object using below code and my modal form having save and cancel buttons
As per my requirement when i click on save button then only object need to update and if i click on cancel button it should not update but using my below code even when i not tap on save button its automatically updating
How can i do my requirement? as like what i want an also suggest the way i am writing code is good or not
add_user.html
<div>
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">New User Registration</h4>
</div>
<div class="modal-body">
<form class="form-horizontal">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Username</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Username" ng-model="newUser.username">
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Email" ng-model="newUser.email">
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Full Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Full Name" ng-model="newUser.fullName">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="button" class="btn btn-default" data-dismiss="modal" ng-click="saveUser();">Save</button>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" ng-click="close()">Close</button>
</div>
</div>
app.js
var app = angular.module('myApp', ['ui.bootstrap']);
app.controller('myController', ['$scope', '$uibModal', '$log',
function ($scope, $uibModal, $log)
$scope.newUser = ;
$scope.info = "";
$scope.users = [
username: "rimon", fullName: "Md. Mamunur Rashid Rimon", email: "rimonmath@gmail.com" ,
username: "shamim", fullName: "Md. Tamim Hossain", email: "shamim@gmail.com" ,
username: "tamim", fullName: "Tamim Iqbal", email: "tamim@gmail.com"
];
$scope.addUser = function ()
var modalInstance = $uibModal.open(
templateUrl: 'add_user.html',
controller: 'ModalInstanceCtrl',
resolve:
items: function ()
return $scope.users;
);
modalInstance.result.then(function (selectedItem)
$scope.selected = selectedItem;
, function ()
$log.info('Modal dismissed at: ' + new Date());
);
$scope.editUser = function (index)
var modalInstance = $uibModal.open(
templateUrl: 'add_user.html',
controller: 'EditInstanceCtrl',
resolve:
user: function ()
var obj =
arrayList: $scope.users,
position: index
return obj;
);
modalInstance.result.then(function (selectedItem)
$scope.selected = selectedItem;
, function ()
$log.info('Modal dismissed at: ' + new Date());
);
;
$scope.deleteUser = function ()
console.log($scope.users.indexOf($scope.clickedUser));
$scope.users.splice($scope.users.indexOf($scope.clickedUser), 1);
$scope.info = "User Deleted Successfully!";
;
$scope.clearInfo = function ()
$scope.info = "";
;
]);
angular.module('myApp').controller('ModalInstanceCtrl', ['$scope', '$uibModalInstance', 'items',
function ($scope, $uibModalInstance, items)
$scope.saveUser = function ()
$scope.users = items;
$uibModalInstance.close();
$scope.users.push($scope.newUser);
$scope.info = "New User Added Successfully!";
$scope.newUser = ;
;
$scope.close = function ()
$uibModalInstance.dismiss('cancel');
;
]);
angular.module('myApp').controller('EditInstanceCtrl', ['$scope', '$uibModalInstance', 'user',
function ($scope, $uibModalInstance, user)
$scope.newUser = user.arrayList[user.position];
$scope.users = user.arrayList;
$scope.saveUser = function ()
$scope.users[user.position] = $scope.newUser;
$uibModalInstance.close();
;
$scope.close = function ()
$uibModalInstance.dismiss('cancel');
;
]);
angularjs
No one have idea about this?
– AbhiRam
Nov 16 '18 at 5:40
add a comment |
Hi i am beginner in AngularJS and i am trying to edit array object using below code and my modal form having save and cancel buttons
As per my requirement when i click on save button then only object need to update and if i click on cancel button it should not update but using my below code even when i not tap on save button its automatically updating
How can i do my requirement? as like what i want an also suggest the way i am writing code is good or not
add_user.html
<div>
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">New User Registration</h4>
</div>
<div class="modal-body">
<form class="form-horizontal">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Username</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Username" ng-model="newUser.username">
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Email" ng-model="newUser.email">
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Full Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Full Name" ng-model="newUser.fullName">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="button" class="btn btn-default" data-dismiss="modal" ng-click="saveUser();">Save</button>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" ng-click="close()">Close</button>
</div>
</div>
app.js
var app = angular.module('myApp', ['ui.bootstrap']);
app.controller('myController', ['$scope', '$uibModal', '$log',
function ($scope, $uibModal, $log)
$scope.newUser = ;
$scope.info = "";
$scope.users = [
username: "rimon", fullName: "Md. Mamunur Rashid Rimon", email: "rimonmath@gmail.com" ,
username: "shamim", fullName: "Md. Tamim Hossain", email: "shamim@gmail.com" ,
username: "tamim", fullName: "Tamim Iqbal", email: "tamim@gmail.com"
];
$scope.addUser = function ()
var modalInstance = $uibModal.open(
templateUrl: 'add_user.html',
controller: 'ModalInstanceCtrl',
resolve:
items: function ()
return $scope.users;
);
modalInstance.result.then(function (selectedItem)
$scope.selected = selectedItem;
, function ()
$log.info('Modal dismissed at: ' + new Date());
);
$scope.editUser = function (index)
var modalInstance = $uibModal.open(
templateUrl: 'add_user.html',
controller: 'EditInstanceCtrl',
resolve:
user: function ()
var obj =
arrayList: $scope.users,
position: index
return obj;
);
modalInstance.result.then(function (selectedItem)
$scope.selected = selectedItem;
, function ()
$log.info('Modal dismissed at: ' + new Date());
);
;
$scope.deleteUser = function ()
console.log($scope.users.indexOf($scope.clickedUser));
$scope.users.splice($scope.users.indexOf($scope.clickedUser), 1);
$scope.info = "User Deleted Successfully!";
;
$scope.clearInfo = function ()
$scope.info = "";
;
]);
angular.module('myApp').controller('ModalInstanceCtrl', ['$scope', '$uibModalInstance', 'items',
function ($scope, $uibModalInstance, items)
$scope.saveUser = function ()
$scope.users = items;
$uibModalInstance.close();
$scope.users.push($scope.newUser);
$scope.info = "New User Added Successfully!";
$scope.newUser = ;
;
$scope.close = function ()
$uibModalInstance.dismiss('cancel');
;
]);
angular.module('myApp').controller('EditInstanceCtrl', ['$scope', '$uibModalInstance', 'user',
function ($scope, $uibModalInstance, user)
$scope.newUser = user.arrayList[user.position];
$scope.users = user.arrayList;
$scope.saveUser = function ()
$scope.users[user.position] = $scope.newUser;
$uibModalInstance.close();
;
$scope.close = function ()
$uibModalInstance.dismiss('cancel');
;
]);
angularjs
Hi i am beginner in AngularJS and i am trying to edit array object using below code and my modal form having save and cancel buttons
As per my requirement when i click on save button then only object need to update and if i click on cancel button it should not update but using my below code even when i not tap on save button its automatically updating
How can i do my requirement? as like what i want an also suggest the way i am writing code is good or not
add_user.html
<div>
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">New User Registration</h4>
</div>
<div class="modal-body">
<form class="form-horizontal">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Username</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Username" ng-model="newUser.username">
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Email" ng-model="newUser.email">
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Full Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEmail3" placeholder="Full Name" ng-model="newUser.fullName">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="button" class="btn btn-default" data-dismiss="modal" ng-click="saveUser();">Save</button>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" ng-click="close()">Close</button>
</div>
</div>
app.js
var app = angular.module('myApp', ['ui.bootstrap']);
app.controller('myController', ['$scope', '$uibModal', '$log',
function ($scope, $uibModal, $log)
$scope.newUser = ;
$scope.info = "";
$scope.users = [
username: "rimon", fullName: "Md. Mamunur Rashid Rimon", email: "rimonmath@gmail.com" ,
username: "shamim", fullName: "Md. Tamim Hossain", email: "shamim@gmail.com" ,
username: "tamim", fullName: "Tamim Iqbal", email: "tamim@gmail.com"
];
$scope.addUser = function ()
var modalInstance = $uibModal.open(
templateUrl: 'add_user.html',
controller: 'ModalInstanceCtrl',
resolve:
items: function ()
return $scope.users;
);
modalInstance.result.then(function (selectedItem)
$scope.selected = selectedItem;
, function ()
$log.info('Modal dismissed at: ' + new Date());
);
$scope.editUser = function (index)
var modalInstance = $uibModal.open(
templateUrl: 'add_user.html',
controller: 'EditInstanceCtrl',
resolve:
user: function ()
var obj =
arrayList: $scope.users,
position: index
return obj;
);
modalInstance.result.then(function (selectedItem)
$scope.selected = selectedItem;
, function ()
$log.info('Modal dismissed at: ' + new Date());
);
;
$scope.deleteUser = function ()
console.log($scope.users.indexOf($scope.clickedUser));
$scope.users.splice($scope.users.indexOf($scope.clickedUser), 1);
$scope.info = "User Deleted Successfully!";
;
$scope.clearInfo = function ()
$scope.info = "";
;
]);
angular.module('myApp').controller('ModalInstanceCtrl', ['$scope', '$uibModalInstance', 'items',
function ($scope, $uibModalInstance, items)
$scope.saveUser = function ()
$scope.users = items;
$uibModalInstance.close();
$scope.users.push($scope.newUser);
$scope.info = "New User Added Successfully!";
$scope.newUser = ;
;
$scope.close = function ()
$uibModalInstance.dismiss('cancel');
;
]);
angular.module('myApp').controller('EditInstanceCtrl', ['$scope', '$uibModalInstance', 'user',
function ($scope, $uibModalInstance, user)
$scope.newUser = user.arrayList[user.position];
$scope.users = user.arrayList;
$scope.saveUser = function ()
$scope.users[user.position] = $scope.newUser;
$uibModalInstance.close();
;
$scope.close = function ()
$uibModalInstance.dismiss('cancel');
;
]);
angularjs
angularjs
asked Nov 16 '18 at 4:08
AbhiRamAbhiRam
66811445
66811445
No one have idea about this?
– AbhiRam
Nov 16 '18 at 5:40
add a comment |
No one have idea about this?
– AbhiRam
Nov 16 '18 at 5:40
No one have idea about this?
– AbhiRam
Nov 16 '18 at 5:40
No one have idea about this?
– AbhiRam
Nov 16 '18 at 5:40
add a comment |
1 Answer
1
active
oldest
votes
You can ng-model-options
where you can specify when you want to update ng-model
actual value of form
level.
<form class="form-horizontal" ng-model-options=" updateOn: 'submit' novalidate>
...
...
</form>
please add some more code i am begginer
– AbhiRam
Nov 16 '18 at 5:29
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53331310%2fhow-to-edit-object-from-array-in-angularjs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can ng-model-options
where you can specify when you want to update ng-model
actual value of form
level.
<form class="form-horizontal" ng-model-options=" updateOn: 'submit' novalidate>
...
...
</form>
please add some more code i am begginer
– AbhiRam
Nov 16 '18 at 5:29
add a comment |
You can ng-model-options
where you can specify when you want to update ng-model
actual value of form
level.
<form class="form-horizontal" ng-model-options=" updateOn: 'submit' novalidate>
...
...
</form>
please add some more code i am begginer
– AbhiRam
Nov 16 '18 at 5:29
add a comment |
You can ng-model-options
where you can specify when you want to update ng-model
actual value of form
level.
<form class="form-horizontal" ng-model-options=" updateOn: 'submit' novalidate>
...
...
</form>
You can ng-model-options
where you can specify when you want to update ng-model
actual value of form
level.
<form class="form-horizontal" ng-model-options=" updateOn: 'submit' novalidate>
...
...
</form>
answered Nov 16 '18 at 5:21
Pankaj ParkarPankaj Parkar
114k16165238
114k16165238
please add some more code i am begginer
– AbhiRam
Nov 16 '18 at 5:29
add a comment |
please add some more code i am begginer
– AbhiRam
Nov 16 '18 at 5:29
please add some more code i am begginer
– AbhiRam
Nov 16 '18 at 5:29
please add some more code i am begginer
– AbhiRam
Nov 16 '18 at 5:29
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53331310%2fhow-to-edit-object-from-array-in-angularjs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
No one have idea about this?
– AbhiRam
Nov 16 '18 at 5:40