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

I need to exclude particular column from export like csv file. Currently there is no any configuration exists. Please help me.

I have 1. the MVCGrid Reference 2. MVCGridToolbarModel.cls in the Models folder 3. MVCGridConfig.cs in the App_Start folder 4. in the _Layout.cshtml view 5. _MVCGridToolbar.cshtml in the Shared view folder...

Is there a way to clear tables from MVCGridDefinitionTable. I want to pass some additional parameters to an action method over UrlHelper.Action. These additional parameters are available only after the...

Hi There, .WithValueExpression((p, c) => c.UrlHelper.Action("InvDetails", "Supplier/SInvoice", new { id = p.InvoiceID })) is not redirecting to the new action and controller, instead its re-calling the same grid action, please...

Hello, I am getting this error. When I try to add the dropdownlist with number of pages to my view. ![image](https://user-images.githubusercontent.com/47757581/53426360-20adcb00-39e7-11e9-9a89-f4fca4cdc478.png)

I have following code MVCGridDefinitionTable.Add("LUServicePersonnelMOC", new MVCGridBuilder() .WithAuthorizationType(AuthorizationType.AllowAnonymous) .WithSorting(sorting: true, defaultSortColumn: "MOC_Service_Type", defaultSortDirection: SortDirection.Asc) .WithPaging(paging: true, itemsPerPage: 10, allowChangePageSize: true, maxItemsPerPage: 100) .WithAdditionalQueryOptionNames("search") .AddColumns(cols => { cols.Add("Select").WithValueExpression((p, c) => c.UrlHelper.Action("Select",...

Hi, Can someone suggest me how to modify the MVCGrid to display each columns total in the Footer Thanks

We have implemented mvc grid in our Application. We have a requirement that we need to assign and read the session values in MVC grid config but the session is...

Hi, I was able to get a total amount of one column...but now I am having trouble displaying it, what would you recommend? ``` result.Items = query.ToList(); var totalAmount =...

I _think_ I have followed the instructions, which means following "Getting started" but I experience this error: **There is already a grid definition with the name 'FpcGrid'. Parameternavn: name** Joe,...