MVCGrid.Net icon indicating copy to clipboard operation
MVCGrid.Net copied to clipboard

Results 100 MVCGrid.Net issues
Sort by recently updated
recently updated
newest added

Fix mvcgrid bug when grid preload is false but tries to get clientdata when data-addicional-options is set

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.4 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

I have requirement to fill the "details" page when we click particular row on MVCGrid. Kind of master details page. Is it supported? if yes, could you share the sample...

I have tried to set **Column Visibility from client side**. as directed [HERE](https://github.com/joeharrison714/MVCGrid.Net/blob/master/MVCGridExample/Views/Demo/ColumnVisibilityDemo.cshtml) **On Line 78** **On this code** MVCGrid.setColumnVisibility('ColumnVisibilityGrid', jsonData); **I am getting below error** ``` Uncaught TypeError: **Cannot...

When the grid is loaded for the first time and Filter is performed on the column. When try to clear the filter URL does not change it doesnot get redirected....

Here is the Steps I have taken. I have follow exactly the same way. 1. Adding new Grid in MVCGridConfig.cs 2. Calling this grid in my view using @Html.MVCGrid("GrdParcel") 3....

this fix #97, When we set the QueryStringPrefix as mentioned [here](http://mvcgrid.net/demo/multiple), export not working anymore because export engine doesn't handle export action, querystring for engine is unmatching with engine type.

I would suggest there should be a checkbox to select multiple records.

For performance and throughput purposes, I'd like to handle RetrieveData/WithRetrieveDataMethod using async operations. Is there a way to accomplish this? Something like: ``` MVCGridDefinitionTable.Add("MyGrid", new MVCGridBuilder() .AddColumns(...) .WithRetrieveDataMethodAsync(async (context) =>...

How to retrieve data from sql server? I'm using this code : .WithRetrieveDataMethod((options) => { var result = new QueryResult(); using (var db = new ) ** p.Employee).ToList(); } return...