BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
function defaultstate() { var gridObj = $("#MainContent_Grid1").ejGrid("instance");// Create a Grid instance. gridObj.clearFiltering();// Remove all the filtered columns and get back in grid. }
|
function saveState() { var gridObj = $("#MainContent_Grid1").ejGrid("instance")// Create a grid instance. filtercol = gridObj.model.filterSettings.filteredColumns.slice();// Store a deep copy of filtered details } |
function applyState(args) {
var gridObj = $("#MainContent_Grid1").ejGrid("instance");
gridObj.model.filterSettings.filteredColumns = filtercol;//Update the filtered records which is retrieve from save state.
gridObj.refreshContent();// Refresh the gridContent. } |
function applyState(args) {
var gridObj = $("#MainContent_Grid1").ejGrid("instance");
var filterRecords = gridObj.getFilteredRecords();//Get the collection of filtered records |