Skip to main content

Posts

Showing posts from May 6, 2016

Angular Js Form Validation

<!DOCTYPE html> <html> <script src="angular.min.js"></script> <body> <h2>Validation Example</h2> <form ng-app="myApp" ng-controller="validateCtrl" name="myForm" novalidate> <p>Username:<br> <input type="text" name="user" ng-model="user" required> <span style="color:red" ng-show="myForm.user.$dirty && myForm.user.$invalid"> <span ng-show="myForm.user.$error.required">Username is required.</span> </span> </p> <p>Email:<br> <input type="email" name="email" ng-model="email" required> <span style="color:red" ng-show="myForm.email.$dirty && myForm.email.$invalid"> <span ng-show="myForm.email.$error.required">Email is required.</span> <span ng-show="myForm.emai

Crud Angular JS

<!DOCTYPE HTML> <html ng-app="myapp"> <head> <title>Angular Js Crud</title> <script type="text/javascript" src="angular.min.js"></script> </head> <body ng-controller="productController"> <table cellpadding="2" cellspacing='2' border="1px"> <tr> <th>Id </th> <th>Name </th> <th>Price </th> <th>Quantity </th> <th>option </th> </tr> <tr ng-repeat="product in listproduct"> <td>{{product.id}}</td> <td>{{product.name}}</td> <td>{{product.price}}</td> <td>{{product.quantity}}</td> <td> <a href="#" ng-click="del(product.id)">Delete</a> | <a href="#" ng-click="selectEdit(product.id)">Edit</a> &l