Tagged Questions
The webgrid tag has no wiki summary.
13
votes
2answers
15k views
Razor webgrid ajax paging and sorting
I'm trying to learn how to use razor webgrid in mvc3 how does the ajaxUpdateCallback parameter work?
10
votes
1answer
5k views
MVC3: WebGrid Column Format Issue
I've been trying to change the format of a single column in a WebGrid without much success.
Said column is this:
grid.Column(columnName: "EmailAddress", header: "Email Address", format:(item) => ...
8
votes
3answers
6k views
ASP.NET MVC 3 WebGrid paging issue
My data access layer returns collection with rows for single page and total number of rows.
Unfortunately WebGrid component does not allow to specify total number of rows or total number of pages ...
6
votes
1answer
6k views
ASP.NET MVC3 WebGrid format: parameter
I am trying to use the new WebGrid in ASP.NET MVC3 and one of the columns I want to display set of link icons that performs various actions (Edit, View, Delete)...
For this purpose I have a HtmlHelper ...
4
votes
1answer
830 views
MVC 3 Webgrid - how do you hide columns you do not want to be visible?
I have a webgrid and there is a column I want to be visible only to certain users.
Currently I have coded the grid as follows
if (Context.User.IsInRole(Role.Inputter) || ...
4
votes
1answer
878 views
How can I use DisplayName data annotations for column headers in WebGrid?
I have a Car class that I'm trying to display in an MVC 3 view using the WebGrid helper. Below are the Car and it's metadata class.
Car class:
[MetadataType(typeof(CarMetadata))]
public partial ...
4
votes
3answers
2k views
asp.net mvc 3 webgrid sorting problem
I'm experimenting a bit with several grids in asp.net mvc.
Microsoft has a grid too know in the prerelease of mvc 3 so I thought I'll try that one out.
The basic functionality is quite easy to ...
4
votes
7answers
12k views
How to make a MVC 3 Webgrid with checkbox column?
The code below will insert an actionlink into one of the web grids' columns.
@{
View.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
var usersGrid = new WebGrid(source: ...
3
votes
0answers
3k views
Multiple Checkbox selection using Webgrid in MVC 3 (select All/Deselect All), Sorting and Paging [closed]
If you are wondering how to make multiple checkboxes and Multiple checkbox selection (select All or Deselect All),paging, sorting in a MVC3 Webgrid, here is the solution:
To Simplify, It has the ...
3
votes
1answer
1k views
MVC3 WebGrid Custom Text in Column
I'm developing a web application using MVC3 in VB.NET.
I having difficulty setting a column on the webgrid with the following action links
Edit | Details | Delete
@*@Html.ActionLink("Edit", "Edit", ...
3
votes
1answer
618 views
How to vary the class of a TD on MVC3 WebGrid generated output?
I am using the MVC3 WebGrid (Razor) and everything is working fine. However, I need to vary the css class that is attached to a particular column based on the value that is in the column.
I have a ...
3
votes
1answer
480 views
Why does the WebGrid use dynamic in formatting?
I'm working with the System.Web.Helpers.WebGrid in an ASP.NET MVC 3 Razor project, and I'm having trouble understanding why the format parameter for a WebGridColumn is a Func<dynamic, object>.
...
3
votes
2answers
824 views
add row in webgrid
I'm working with MVC 3 webgrid and i need to add a new row into webgrid to show sum of price from product table.
Any ideas are appreciated.
Here's my code
@{
WebGrid grid = new WebGrid(source: Model,
...
3
votes
1answer
564 views
Header Format for WebGrid
I just read: http://www.mikesdotnetting.com/Article/154/Looking-At-The-WebMatrix-WebGrid and see a reference to [Optional, Default Value(null)] string header
Header text if you don't want database ...
3
votes
1answer
1k views
ASP.NET MVC3 WebGrid Helper and Model Metadata
I'm trying to use the WebGrid html helper in ASP.NET MVC 3 to autogenerate the columns according to the information found in the ModelMetadata. For example the code in a view that accepts a list of ...
3
votes
8answers
8k views
Mvc 3 texbox in webgrid (razor)
Simple Q:How do you I get the textbox to show the value. Code below fail on item.LastName
@model List<Mvc2010_11_12.Models.Employee>
@{
var grid = new WebGrid(source: Model,defaultSort: ...
2
votes
1answer
165 views
Add a “loading” indicator in a MVC webgrid?
I am using MVC3 and displaying my data in a webgrid. I would like to display loading indicator (loading image) displayed when I filter/search. What is the best approach?
My search filter (code):
...
2
votes
1answer
124 views
Does MVC3 WebGrid support horizontal scrollbars?
I have a record set that is quite wide (about 25-30 cols)...does MVC3 WebGrid support horizontal scrollbars (or can I house the grid in a html tag/control)?
2
votes
1answer
188 views
ASP.net MVC3 Webgrid
I am using a webgrid to display some dynamic data. I have recently refactored my code, to move away from a hierarchal Model, containing various different types of data to be displayed in a View to ...
2
votes
1answer
561 views
Adding custom html to Header in WebGrid
I'm trying to add a custom header for an MVC3 WebGrid.
The header property only allows for string, and any HTML is escaped.
My current grid razor view is as follows:
var grid = new WebGrid(Model, ...
2
votes
1answer
1k views
Using data in a HTML.ActionLink inside a WebGrid.column, not possible?
I have the following WebGrid in my ASP.NET MVC3 test application. It displays a list of customers:
@grid.GetHtml(
tableStyle: "grid",
headerStyle: "head",
alternatingRowStyle: "alt",
columns: ...
2
votes
3answers
725 views
How to change WebGrid action for getting data (.NET MVC3)
I have a Partial View that renders WebGrid. My controller looks like
public ActionResult Index()
{
return View();
}
public ActionResult GetUserList(int? page, string sort, string sortdir)
{
...
2
votes
1answer
983 views
MVC3 WebGrid - Row Id
How can you specify the row id or class with a specific id?
<tr id="row1">
Or even this is ok
<tr class="row1">
I was thinking something like this would work but it doesn't.
...
2
votes
1answer
1k views
Razor Nested WebGrid
How do I have nested WebGrid with lot of formatting for each column. I can do a nested for-loop, but I need it basically for paging. Or is there any other better option?
2
votes
3answers
1k views
Webgrid Format of datetime and setting style
I'm struggline with syntax gremlins with the WebGrid. In my normal razor markup i format a date inside my foreach like so
<td>
@String.Format("{0:MM/dd/yy hh:mm:ss}", ...
2
votes
1answer
498 views
Access Model Data in WebGrid
How do I access additional sub-model information within a WebGrid?
var personGrid = new WebGrid(source: Model.People,
ajaxUpdateContainerId: "personGrid",
ajaxUpdateCallback: ...
2
votes
1answer
3k views
MVC 3 WebGrid with a checkbox filter
I'm developing a web application using MVC 3 RTM. In a view I have a WebGrid which works fine with sorting and paging. However, I also needed some filtering support on the page, so I added a textbox ...
2
votes
1answer
1k views
Hide WebGrid column based on user role - MVC 3
I need to do a grid using webgrid and I would like to hide the column (header and items) of edit actions based on user role.
How to do that with webgrid?
2
votes
1answer
732 views
DropDownListFor in ASP.NET MVC 3 WebGrid
I have a WebGrid that I'm creating and I want a dropdownlist in there - I can't find a way to make one of the rows a DropDownList - any tutorials out there?
Right now i've been trying to use the ...
2
votes
1answer
848 views
Adding image to MVC 3 Web grid column header
recently i am using Web grid of MVC 3 . In one of the columns i need to display a image next to header text . Eg: + is this possible with MVC Web grid.
thx
2
votes
4answers
2k views
To WebGrid or not to WebGrid…what is the answer?
I'm reading and hearing some pain points and am wondering if I should even go that route. Not to mention, I cannot seem to find any definitive documentation (from Microsoft). If you say I shouldn't ...
2
votes
1answer
2k views
MVC3 WebGrid Formatting or Styling Column Headers
I'm using the new MVC3 WebGrid. So far so good, just having issues styling/formatting the column headers.
The best I've got is a workaround that applies the same css class from the first row of the ...
1
vote
0answers
146 views
Asp Mvc3 webgrid Paging and Filtering by ajax
I Have a little problem with WebGrid control for Asp.Net MVC3. What I want is to perform a search view using ajax and webgrid; something like this:
Search Criteria ______________________________
...
1
vote
1answer
90 views
Calling javascript in webgrid
I am having trouble calling javascript function in webgrid
<%= gridColumns.Add(grid.Column("CarrierName", "CarrierName",
format: (item) => new HtmlString("<a src='#' id='test'
...
1
vote
1answer
80 views
Refer to an other columns value in a MVC3 Razor WebGrid
I have a webgrid presenting data grouped by weeks. The first grid column contains the weeknumber as seen below in the code example.
The last "Summary" column needs to show different content depending ...
1
vote
1answer
175 views
MVC3 Html.BeginForm inside a WebGrid column?
I had a somewhat crazy idea earlier tonight, and got 3/4 of the way done implementing it and have run in to a weird problem.. I wanted to automatically generate an index of all methods on a ...
1
vote
0answers
186 views
ASP .NET MVC3 WebGrid footer
I really cannot find any good solution to realize ASP .NET MVC3 WebGrid footer which has some total values...
Any clue how to do it?
Thank you!
1
vote
1answer
502 views
Conditionally display an image in webgrid - mvc 3
In my webgrid I need to display images based on the value .. Code is given below
@model TraktorumMVC.Models.ManagePhotos
@{
ViewBag.Title = "ManagePhotos";
Layout = ...
1
vote
0answers
329 views
Asp.net MVC3 manipulating WebGrid Row
var grid = new WebGrid(source: Model, ...);
grid.Column("IsValid", "IsValid", format: (item) => (item.IsValid) ?
? Html.Raw("< src='../../Content//' />")
: Html.Raw("< ...
1
vote
2answers
362 views
How to add Html inside ASP.NET MVC 3 WebGrid Column Name (Header)
I am unable to add html inside WebGrid column name(at header)? When I add html inside column name then webgrid encodes that. Is this is not possible to add html inside WebGrid column name?
1
vote
1answer
128 views
How to cache mvc3 webgrid results (so that col sort click doesn't?
Can somebody please tell me how I can cache my webgrid results so that when I sort by column it doesn't re-run my stored procedure query every time?
When clicking on a column link to sort, the ...
1
vote
1answer
245 views
Asp.Net MVC WebGrid helper custom attributes for table rows
Is there a way to assign custom data attributes for table rows generated by the WebGrid helper in Asp.Net MVC?
What I would like to end up with is something like this:
<tr ...
1
vote
1answer
647 views
MVC 3 WebGrid - is inline editing possible?
Has anyone implemented inline editing using the MVC 3 WebGrid helper? I've done a lot of searching on the topic, but haven't found much in the way of suggestions. Also, I'm not in the position of ...
1
vote
1answer
338 views
How to format date in mvc web grid
I have a web grid and I am not using razor syntex.Rather I am using the .aspx form.
the code is below;
<%
var grid = new WebGrid(Model,defaultSort:"PublishDate",rowsPerPage:10);
%>
...
1
vote
1answer
390 views
Add a table row in webgrid with pagination problem?
I'm trying to add a row to a MVC3 WebGrid with pagination enabled using JQuery.
When I add the new row, it's inserted correctly as the last row, but the problem appears when I have more than 1 page ...
1
vote
0answers
159 views
How to get my Action method to give me back my model from web grid with checkboxes
I have a strongly typed view which is uses an IEnumerable as its model.
There's a bool property on the model which I'm rendering in a MVC WebGrid in a checkbox which the user can then check or ...
1
vote
1answer
714 views
MVC3 Webgrid Paging and Sorting
I'm using MVC3 webgrid to display, sort and paginate data. The display is fine, but when I click on a new page or request a sort, it opens the table in a brand new window on it's own? Anybody know ...
1
vote
0answers
403 views
How to display dynamic Html.ActionLink label?
This code works, but displays "Details" for every row of my table:
@appsGrid.GetHtml(
tableStyle: "table",
headerStyle: "head",
alternatingRowStyle: "alt",
columns: ...
1
vote
2answers
210 views
Inserting Hyperlinks into the WebGrid
I have searched high and low, and it was only a few weeks ago I saw heaps of sites that had little samples for this, but for the life of me can't find them now!
I have a webgrid, and for certain ...
1
vote
2answers
1k views
Server side paging for MVC3 Webgrid
I have looked at a number of examples (e.g. http://www.dotnetcurry.com/ShowArticle.aspx?ID=618 and http://msdn.microsoft.com/en-us/magazine/gg650669.aspx) but it seems very manual and convoluted.
The ...