Skip to main content

Posts

Showing posts with the label Edit/Delete Rows in AngularJs

Multicast Delegate Example in C#.Net

What are Multicast delegate, type and use? The multicast   delegate is hold the references of more than one methods within the delegate object using the (+=) operator. 1.       Delegate is added using the (+=) operator.  2.       Delegate is removed using the (-=) operator.  Example for Multicast Delegate as following, using  System; using  System.Collections.Generic; using  System.Linq; using  System.Text; namespace  MulticastDelegateExample {      public   delegate   int   MulticastDelegateName ( int  num1,  int  num2);      public   class   MulticastClass     {          public   static   int  Add( int  num1,  int  num2)         {     ...

CRUD operations in AngularJs - ngGrid Edit/Delete Rows in AngularJs

Download full code sample from this link. click The Reference files ? 1 2 3 4 <link rel= "stylesheet" type= "text/css" href= " http://angular-ui.github.com/ng-grid/css/ng-grid.css " /> <script src= " https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js " ></script> <script src= "//ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.1/angular.min.js" ></script> <script type= "text/javascript" src= " http://angular-ui.github.com/ng-grid/lib/ng-grid.debug.js " ></script> <link rel="stylesheet" type="text/css" href="http://angular-ui.github.com/ng-grid/css/ng-grid.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.1/angular.min.js"></script> ...