SkillAgentSearch skills...

JqGridForMvc

Fluent jqGrid Html Helper for ASP.NET MVC. JqGridForMvc is most simple and popular JqGrid plugin that can be used to quickly create a commercial request form. We are also pursuing: "write less, do more", if you have any questions or help with it you can send email to me or contact me

Install / Use

/learn @halower/JqGridForMvc
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

JqGridForMvc

JqGridForMvc is most simple and popular JqGrid plugin that can be used to quickly create a commercial request form. We are also pursuing: "write less, do more", if you have any questions or help with it you can send email to me or contact me

Installation

Install-Package HalowerHub.Jqgrid

Sample Code

Here is a simple example, but JqgridForMvc has supported the most common Jqgrid operation, there is time to do supplementary examples

@model UserDto
@{
    var g = Html.JqGridKit();
}
<div class="row" style="margin-top: 10px">                              
    @(                                  
    g.JqGrid("userlistGrid", g.Param(p => p.Id)).MainGrid(                                
        g.GridColumn(x => x.Id, 300),                                   
        g.GridColumn(x => x.UserName, 300).Searchable(),                                    
        g.GridColumn(x => x.PhoneNumber, 300).Searchable(),                                    
        g.GridColumn("options",150, "custom html fragment")                                 
        )                                  
        .Caption("user grid").Height("150")                        
        .Url(Url.Action("UserListData", "Account")).Multiselect()                        
        .Pager().PerClearCache().MultiSearch().AutoWidth()                          
        .BuiltInOperation(GridOperators.Refresh | GridOperators.Search | GridOperators.Add)                                  
    )                               
</div>

or:SubGrid #back-end -code(Only a word)

public ContentResult UserListData()
{
    return Content(dataSource.Pagination(this));
}
View on GitHub
GitHub Stars121
CategoryDevelopment
Updated1y ago
Forks10

Languages

C#

Security Score

85/100

Audited on Mar 2, 2025

No findings