Wednesday, 23 March 2016

Checkbox Toggling in Angularjs

Requirement : We need to make a checkbox for every option available in our $scope object and preserve the option selected for further use. Step 1: Store your required option list in a $scope. Example :  $scope.options : SalesOrderNos In our example the SalesOrderNos have a list of sales order, on which we require the checkbox. Step2: Declare another scope variable to store the selected options values $scope.selection = [ ]; Step 3 : use ng-repeat to repeat our sales order list <tr ng-repeat="s in options">   <td><input...
0 Read More »

Monday, 14 March 2016

Angular Material Auto - Complete

1
 Angular Material is the reference implementation of Google's Material Design Specification. This project provides a set of reusable, well-tested, and accessible UI components based on Material Design. To use Angular- Material, required...
Read More »

Tuesday, 8 March 2016

Starting with SignalR Part 1 (Overview)

0
SignalR, a framework that facilitate asynchronous data transfer between the server and the clients in real time. Basically, SignalR isolates us from low-level details, giving us the impression of working on a permanently...
Read More »

ng-change

0
ng-change can be used to capture any action performed by the user with input type tag, select tag. Using ng-change with input type : <input type="number" class="form-control" ng-change="calculate()" /> Here ng-change modal will go to calculate() in the controller of...
Read More »

Beginning-with-database-approach-Part 3

0
In Part 2 of beginning with entity framework we did CRUD operation using entity framework. Now, there are few tips for using entity: How to update your Entity Data Model (.edmx)? Open your .edmx file >Right click >Select update...
Read More »