Wijmo 5 [Grid last row set for editing and scroll]

In flex grid last row selected and ready to edit along with this automatic scroll to the row

HTML

<script src="http://cdn.wijmo.com/5.latest/controls/wijmo.min.js"></script>
<script src="http://cdn.wijmo.com/5.latest/controls/wijmo.input.min.js"></script>
<script src="http://cdn.wijmo.com/5.latest/controls/wijmo.grid.min.js"></script>
<script src="http://cdn.wijmo.com/5.latest/interop/angular/wijmo.angular.min.js"></script>
<link rel="stylesheet" href="http://cdn.wijmo.com/5.latest/styles/wijmo.min.css">
<div ng-app="app" ng-controller="appCtrl">
   <wj-input-number value="val" step="1" size="100%" format="g5"></wj-input-number>
</div>

CSS

.isError {  
  background-color: 'red';
  color: white;
}

JavaScript

// define app, include Wijmo 5 directives
        var app = angular.module('app', ['wj']);
        // controller
        app.controller('appCtrl', function ($scope) {
           $scope.val=58956.2500;
        });