Skip to main content

Posts

Showing posts with the label custom row template in ng-grid angularjs

custom row template in ng-grid angularjs

The HTML code-sample for ng-grid ? 1 2 3 4 5 6 7 < fieldset ng-app = "ngGridApp" >        < legend >        </ legend >      < div ng-controller = "ngGridController" >        < div class = "ngGridStyle" ng-grid = "ngGridView" ></ div >      </ div > </ fieldset > <fieldset ng-app="ngGridApp" > <legend> </legend> <div ng-controller="ngGridController" > <div class="ngGridStyle" ng-grid="ngGridView"></div> </div> </fieldset> The Custom row Template code-sample ? 1 2 var removeRowTemplate = '<span style="display:block; text-align:center;"><button ng-click="editRowIndex($index)" class="btn btn-xs btn-default"><i class="fa fa-pencil"></i></button>...