Questions tagged [grid.mvc]

Grid.Mvc adds functionality for creating GridView controls in your ASP.NET MVC 3/4 web application.

Grid.Mvc adds functionality for creating GridView controls in your ASP.NET MVC 3/4 web application. It is a component that allows you easy construction of HTML tables for displaying, paging, filtering and sorting data from a collection of your Model objects.

71 questions
3
votes
1 answer

Best way to show Total Rows Grid.MVC List

I have a Grid.MVC based list which allows me to create a sortable, filterable, paged list. Problem is, I can't seem to find anything in the documentation for Grid.MVC in particular to ouput a "count" of what has been filtered. I figured you may need…
aohm1989
  • 401
  • 1
  • 8
  • 19
3
votes
0 answers

implement server side processing and Ajax interaction for the Grid.MVC plugin

I am working on an asp.net mvc web application, and I want to use the Grid.MVC plugin found at this link http://gridmvc.codeplex.com/ . So I did the following:- From the NuGet package I installed the Grid.MVC to my project. The I added the…
John John
  • 1
  • 72
  • 238
  • 501
2
votes
1 answer

How to change page size in Grid.mvc

I have the following controller: public ActionResult Grid() { schoolEntities db = new schoolEntities(); List result = db.Students.ToList(); // I can't use pagesizelist here, taken from the view …
xralf
  • 3,312
  • 45
  • 129
  • 200
2
votes
1 answer

Modal view (partial) from MVC.Grid

I have a cshtml page (index) that displays a Grid.MVC with rows of data. When the user clicks on the ID row I need to display a popup window that provides more detail information. I have a break point in my JavaScript code but it is never hit. …
Craig
  • 1,205
  • 2
  • 21
  • 54
2
votes
0 answers

Grid.mvc Setup initial column filtering

I use Grid.MVC to show my data to user. I need to setup initial column filtering for column "active" after page loads first time. I read document page of Grid.MVC and it says i should add .SetInitialFilter() to the column but it does not work for…
Parsa
  • 1,299
  • 11
  • 17
2
votes
0 answers

In-line row editing with Grid.MVC

Is it possible to do in-line row edit (double click on a row and edit it) in Grid.MVC. The documentation is here
Ponni
  • 443
  • 1
  • 7
  • 20
2
votes
2 answers

Grid.mvc use in partial view

I have a problem about use Grid.mvc in Partial View. When I use grid.mvc in View, it working normal but when I use in partial view, grid.mvc can't paging, filter... Have any idea? Thanks you very much! This is my code:
2
votes
1 answer

Filter Grid.Mvc on client side without postback

I am new to Grid.MVC and I am using it to display a list of Results. However, when I filter or sort the columns, it posts back to the action to get the results. Is there a way that I can filter the results on client side using Grid.MVC?
M Y Essa
  • 115
  • 2
  • 7
2
votes
2 answers

Grid.MVC date filter

I have a model bound to grid.MVC, every other filter works fine apart from the date picker filter. I have added the grid.mvc.datepicker.css to the bundle and I am getting the date picker. There are no errors in any of the js and all the js files…
Bajju
  • 925
  • 11
  • 27
2
votes
3 answers

Return to second to last URL in MVC (return View with previous filter conditions applied)?

I'm working on an MVC5 application. On the home screen is a grid allowing users to view Data and be transferred to a number of Views for various actions on each record. One of these is an [EDIT]. The issue I'm encountering is as follows: due to the…
Analytic Lunatic
  • 3,853
  • 22
  • 78
  • 120
2
votes
2 answers

Grid.Mvc sorting not working

I've created a grid using Grid.Mvc. For some reason sorting is not working on it. When I click on the column to sort it, it just reloads the page. I'm very new to MVC and not sure how to fix this. Here is my…
hollyquinn
  • 652
  • 5
  • 15
  • 48
2
votes
1 answer

GridMvc wrong shows texts in column

I have a problem with GridMvc library. I want to add column which contains joined table of string with delimiter, here is my code: columns.Add() .RenderValueAs( row => string.Join( …
duch1989
  • 97
  • 7
1
vote
1 answer

Having date range filter in GridMvc

My requirement is to have date range filter in one of the date type column in Grid.Mvc plugin, As of now I am able to apply filter on single date picker control with "Equal", "Greater Than" and "Less Than" options. But my requirement is to have…
Pratik
  • 11
  • 3
1
vote
0 answers

Refresh Grid.MVC on ajax call

In my View I have a grid and a checkbox above the grid. On checking the check box I am unable to refresh the grid. I am using Grid.MVC. Can someone help me on this. Index.cshtml @(Html.Grid(Model.RequestDetail).Named("RequestGrid").Columns(columns…
M_Jero
  • 39
  • 2
  • 10
1
vote
1 answer

how to select assigned job to the user?

I have mission system in MVC. and I give a same mission or diffrent mission for a lot of users. and I show title, description, start date , finish date and who are/is in mission. These are showing view page in grid.mvc. but when I login I can see…
Oğuz Özdemir
  • 89
  • 3
  • 12
1
2 3 4 5