Wednesday, 23 March 2016

Checkbox Toggling in Angularjs

0
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...
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 »

Wednesday, 2 March 2016

Beginning-with-database-approach-Part 2

0
In our first part we have created our .edmx file with the help of ADO.net Entity Data Model using database approach. Now, it’s time to start using our entity Framework to do SQL operation. Before that,  if you are using visual...
Read More »

Tuesday, 1 March 2016

Beginning with database approach Part-1

0
This approach could be used with any previously build database, that why known as database model approach. It will help us to communicate with our database, with its predefined functions, and giving our C# code more power in terms of SQL...
Read More »