WebGrid is a view control built in to the ASP.NET Web Pages Framework. It displays a sortable, pageable HTML grid given a collection, and is customizable in various ways, making use of .NET 4.0's "dynamic" object type.
0
votes
0answers
19 views
why the result value don't appear in <input valorTotal[@item.ProductId]
because the result value don't appear in input of grid column? PS: in the teste input is ok! =( (i've other input calling the function Produtos_AtualizarProdutoLista(@item.ProductId)
THanks for the ...
0
votes
0answers
12 views
Row Nested WebGrid with Expand/Collapse MVC4
I want a row nested webgrid. something like the one in the below link for normal gridview.
http://csharpdotnetfreak.blogspot.com/2012/06/nested-gridview-example-in-aspnet.html
I was able to find ...
2
votes
2answers
27 views
Razor multiline syntax for grid column format
I have a WebGrid that I am trying to define in an MVC4 razor view. I would like to define a column format using multiple lines for readability. The following works, with the format on one line:
...
1
vote
2answers
72 views
WebGrid pagination issue in MVC3
The issue is that pagination is working fine till the 9th page number and when I request the page which is in double or more digits then it takes the last digits and ignore the rest, say e.g. If I ...
0
votes
0answers
14 views
How to dynamically change actionlink text in WebGrid?
In a webgrid I am having actionlink as Active. When I click on it, It should be changed into InActive actionlink and vice versa.
How can I format the actionlink?
0
votes
0answers
33 views
CheckBox Binding in WebGrid [closed]
I have a MVC WebGrid in my application.
Two things I need here:
1. Generate an auto increment column for displaying the serial number
2. A column which contain check boxes bind to my model Boolean ...
2
votes
0answers
33 views
Webgrid: URL for Sorting and Filtering
I have a webgrid that is in a partialview. The parial view contains an ajax form which pass data to the webgrid. My view looks like
using (Ajax.Begin("Gain", "Gaining", new ...
1
vote
1answer
47 views
page number click in webgrid calls controller action with pagenumber as input
I have below piece of code. Whenever I click on upload button, the file submits. If there is an error, then it will be displayed in the grid. But, when I click on A page number, then the controller ...
0
votes
0answers
17 views
Webgrid with Ajax search form: Post VS Get
I have a question about webgrid following this question
I have a webgrid below and ajax form (HttpMethod: post) to search the webgrid. As in the question in the link, after I do a search and I try to ...
3
votes
1answer
61 views
Infragistics WebHierarchicalDataGrid Unable to determine when a child row is selected and then how to get the data that is selected
I have dragged a WebHierarchicalDataGrid to the page and have told it not to autogenerate bands or autogenerate columns. Enable Ajax is unchecked. Via codebehind, I manually created the columns on ...
0
votes
0answers
56 views
Datagrid in MVC4 to list uploaded files
I have cshtml page, it has a browse button and an add button. I can browse a file and while I click the add button I want to show the file name and a delete option on a grid on the same page. Each ...
0
votes
0answers
100 views
MVC webgrid actionlistener get the values of the selected row to the controller
In my view I want to display a webgrid. My problem is that I want to pass the whole model when select on the row.
as the following new { model = @item[selected row]}
@model ...
0
votes
1answer
26 views
Keep current page when sorting in @grid.GetHtml
Is there any way to keep current page when sorting @grid.GetHtml columns?
For now I have this
public virtual ActionResult Users(int? page)
{
var model = _context.Users();
return View(model);
}
...
0
votes
1answer
74 views
C# MVC - Keep sort direction, column and paging in Webgrid alive when deleting a item?
Is it a good way to use routed values for column name, page and sort dir or are there better ways to keep the webgrid settings alive?
Currently it looks like this:
@Html.ActionLink("Delete", ...
1
vote
1answer
64 views
Webgrid disappear while clicking pagination in MVC3
I have a grid as a partialview in my main cshtml.When i click page number in the gird,the grid is disappearing. any suggestion?
Devices.csthml(partialview)
Even i have div my-grid in the partial ...
1
vote
0answers
85 views
MVC Partial View WebGrid not reloading
I have the following View and Controller:
View:
<div class="searchPastTransactions">
<p>
<label for="start">From:</label>
@(Html.Kendo().DatePicker()
...
0
votes
0answers
42 views
MVC C# WebGrid sort failing
I have a WebGrid sort that is not doing anything upon clicking the headers.
The WebGrid is contained within a Partial View that looks like this -
@model MyModel
var grid = new WebGrid(Model.MyList, ...
0
votes
1answer
108 views
implement row number in mvc3 webgrid along with paging?
i want to autogenerate rownumber for webgrid and im able to do it with the below code
grid.Column(header: "RowNumber", format: item => item.WebGrid.Rows.IndexOf(item) + 1),
the problem with this ...
-1
votes
0answers
32 views
Search on WebGrid in MVC3
@grid.GetHtml(
headerStyle: "headerStyle",
tableStyle: "tableStyle",
alternatingRowStyle: "alternateStyle",
fillEmptyRows: true,
mode: WebGridPagerModes.All,
...
2
votes
1answer
435 views
Inline editing of Webgrid row in MVC3
public class UserDetailsModel
{
public int ID { get; set; }
public string LoginID { get; set; }
public string FirstName { get; set; }
public string LastName { get; ...
0
votes
0answers
28 views
Problems with webgrid
This is my big problem and I do not know what to do,
I've got a webgrid in my page :
var grid = new WebGrid(rowsPerPage: Model.RegistroPorPagina, ajaxUpdateContainerId: "contain", ...
1
vote
0answers
89 views
C# MVC - Using a Webgrid and jquery-dataTables-rowOrdering.js
Anyone got the a webgrid and jquery-dataTables-rowOrdering.js playing together in a MVC application?
0
votes
0answers
99 views
Create ASP.NET MVC WebGrid Column from parent table value
I have a WebGrid that displays the ScheduleType ID from a Schedule table as a column using this code:
grid.Column("ScheduleType", "Type")
My Schedule class includes this virtual ScheduleType:
...
0
votes
0answers
119 views
ASP.NET MVC3 WebGrid sorting with custom objects
I want to sort by column containing objects of my own type.
Witch method should I override in my custom object (i.e. CompareTo, operator <) so the WebGrid can sort them automatically,
Much like ...
1
vote
0answers
73 views
How to show a webgrid in a modal when a link is clicked
I have been taking advantage of mikedotnetting tutorials and samples. From this link I am building a CRUD application. First a user searches or filters the webgrid. The results shown have two ...
0
votes
0answers
44 views
javascript does not execute paging in my webgrid
I have a webgrid with a filter. I am using ajaxUpdateContainerId in my webgrid. Now paging is a problem.
I have this script which have to executes after page load and when paging link is click but it ...
0
votes
2answers
126 views
How can I show data table data in webgrid
I am new to MVC3 Razor. How can I show data table data in webgrid ?
Below is what I have tried...
My Home Controller
Public Function List() As ActionResult
Dim dt1 As New DataTable
...
0
votes
0answers
85 views
JQuery addclass change reverts back when input box is within a form (form hasnt been submitted)
I am using MVC4 and Javascript to build a form & highlight boxes that are changed by the user.
The input boxes will eventually be in webgrid control, but in effort to workout what is going wrong I ...
1
vote
1answer
112 views
How do I get my WebGrid to POST instead of GET during a sort or paging operation in my MVC4 site?
I have a fairly simple site with a Search partial view and a Listing partial view. They're rolled up using multiple models into the Index view.
Everything is fine. Except when I click the grid column ...
0
votes
0answers
55 views
Is there a way to always show pager controls in WebGrid?
I have a WebGrid in an MVC3 project that works perfectly, but I would like the pager controls at the bottom of the page to be consistently visible. Currently the "<< First" and "< Prev" links ...
0
votes
1answer
1k views
Update WebGrid and DropDown through Ajax in MVC 4
I am very new to MVC and have just come across a scenario that I need some help with.I am creating a website in ASP.NET, C#.NET Using MVC 4. So as per my requirement I have two DropDowns which is ...
1
vote
0answers
64 views
Confirmation message in webgrid
I am using Webgrid in MVC.And I was added in default column in the webgrid with link button(anchor tag). Now I want when the button click shown a confirmation message . But I tried in below code
...
0
votes
0answers
10 views
Webgrid Escaping
I am working on a web app using webgrid. I am having an issue pulling data from a database that the field name uses a forward slash. Is there a way to escape the forward slash, or another method of ...
0
votes
2answers
31 views
Webgrid ,first td should be diffrent
I am planing to use Webgrid of MVC3/MVC4
But all my rows in the table should have same column format except for the first one.
In the first row there should be a text box that span all the columns ...
0
votes
1answer
144 views
Issue adding search filter to paged, sorted WebGrid
I'm having an issue getting my filtered results to post back into the paged, sorted webgrid properly. For example, my grid is limited to 5 items per page, but if the filter search returns 9 items, all ...
0
votes
1answer
46 views
What is the right combination to use Paging and styling in MVC?
I may not be finding the best way to ask this, but I'm learning MVC by trying to build a small website. This is supposed to be a shopping website. Here I am on the part of displaying items on the ...
0
votes
0answers
130 views
Using MVC 4 WebGrid in VS 2012
I have an MVC 4 project created in Visual Studio 2012.
I am trying to create a WebGrid object but the project does not have a reference to the System.Web.Helpers.dll assembly. I can see the ...
0
votes
2answers
34 views
dynamic expression to method
I can't get it work
@grid.GetHtml(
tableStyle: "bordertable",
columns: grid.Columns(
grid.Column("aaaa", format: @<text> @Roles.GetRolesForUser(@item.UserName).LastOrDefault() ...
0
votes
0answers
261 views
Populate WebGrid in MVC from dynamic list
I realize this may not be the best way of doing things but I am passing a DataTable to my view. In the view I then convert the DataTable to a List<dynamic>. After the conversion, I am ...
5
votes
2answers
86 views
Why can't I use my extension method in a delegate in the Razor WebGrid
I'm using the MVC 3 introduced WebGrid, but can't can't apply my own extension methods when passing a delegate for the format param.
Using:
Grid.Column("MyProperty", "MyProperty",
format: ...
0
votes
1answer
132 views
MVC WebGrid Conditional Concate Htlm.ActionLink
I'm trying to concatenate 2 Html.ActionLink in a conditionnal column in a WebGrid.
somethings like that :
@grid.GetHtml(columns:grid.Columns(
grid.Column("AccountNumber"),
...
1
vote
2answers
179 views
How do I keep filtered results while paging webgrid
Im developing a system using MVC3, and to render Grid, it is necessary to use WebGrid.
I have an ActionResult that returns the Index page that contains an empty grid.
I have another ActionResult that ...
0
votes
0answers
36 views
WebGrid rendered but AJAX malfunction
I'm developing an MVC 4 App with Razor v2. But when trying to employ WebGrid helper with ajax, I found that the WebGrid table is rendered without the function of ajax.
Here is the example code:
...
0
votes
2answers
156 views
Delete webgrid row using javascript?
I have a webgrid in mvc3. It has the column delete. Upon clicking it, I want to run a Javascript function to redirect the user to a controller's action by passing a row id as the parameter to the ...
0
votes
0answers
116 views
Re sizing MVC webgrid through css styling
I'm trying to keep my webgrid within the page and have just a scroll bar at the bottom to see it. However, any CSS styling I add to the div it's in to keep it within bounds it just ignores. Is there ...
0
votes
1answer
498 views
MVC 4 WebGrid and Jquery produces two errors. JQuery is undefined and a sort error after ajax model change
Inside my div element I am updating is a page partial with a webgrid and when I specifiy ajaxUpdateContainerId: in the webgrid constructor I get the error:
JavaScript runtime error: 'jQuery' is ...
0
votes
1answer
75 views
MVC 3 WebGrid Trying to Control Every Row's Permission
Why is this column not showing the links when I can see that the dictionary contains the keys and values. It looks like the index "item.Name" is not resolving. It was working fine before when I didn't ...
0
votes
1answer
365 views
MVC Webgrid, is it possible to add css style to a single columns header?
I am using MVC4 and the WebGrid control.
I need to apply CSS styles to all the columns headers except for the first column
Currently my code is:
@{
Webgrid grid = new ...
0
votes
0answers
203 views
ASP.NET MVC WebGrid customize row (CSS)
I want to highlight a specific cell of my table, when there is a value in it.
I don“t know how i can make this specific kind of higlight with my WebGrid. At the moment (without using WebGrid) my View ...
1
vote
3answers
494 views
checkbox oncheck redirect to actionresult in mvc
I am creating a project in mvc which uses webgrid. In the webgrid I have two columns namely Status and IsActive.
The status column can contain only two values: checked or unchecked.Both these values ...


