Posts

Showing posts with the label React

React - table with search and sort

Create a table in React and adding search filter and sort <script src="./Scripts/angular.min.js"></script> <div ng-app="myApp">     <div id='controlerID' ng-controller='myControllerARR' style='padding-top: 10px;'>         <div style='float: left'>Search:             <input type='text' ng-model='searchCriteria' style='padding: 0px 6px!important;' />         </div>         <div style='float: right'>Order by:                <select ng-model='SortOrder' style='margin-bottom: 0px;'>                 <option value='+Nome'>Nome (asc)</option>                 <option value='-Nome'>Nome (dec)</option>                 <option value='+City'>City (a...