All Projects → halower → Jqgridformvc

halower / Jqgridformvc

Licence: apache-2.0
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

Labels

Projects that are alternatives of or similar to Jqgridformvc

Ps Webapi
(Migrated from CodePlex) Let PowerShell Script serve or command-line process as WebAPI. PSWebApi is a simple library for building ASP.NET Web APIs (RESTful Services) by PowerShell Scripts or batch/executable files out of the box.
Stars: ✭ 24 (-80.33%)
Mutual labels:  asp-net
Dtcms
动力启航网站管理系统(简称DTcms),是目前国内ASP.NET开源界少见的优秀开源管理系统,基于 ASP.NET(C#)+ MSSQL(ACCESS) 的技术开发,全部100%免费开放源代码。
Stars: ✭ 63 (-48.36%)
Mutual labels:  asp-net
Weixinsdk
Wlitsoft 框架 - 微信公众号开发工具包(C# 版)
Stars: ✭ 102 (-16.39%)
Mutual labels:  asp-net
Awesome Microservices Netcore
💎 A collection of awesome training series, articles, videos, books, courses, sample projects, and tools for Microservices in .NET Core
Stars: ✭ 865 (+609.02%)
Mutual labels:  asp-net
Opentelemetry Dotnet
The OpenTelemetry .NET Client
Stars: ✭ 1,037 (+750%)
Mutual labels:  asp-net
Viewstate
ASP.NET View State Decoder
Stars: ✭ 77 (-36.89%)
Mutual labels:  asp-net
Vc Platform
VirtoCommerce Platform repository
Stars: ✭ 828 (+578.69%)
Mutual labels:  asp-net
Recaptcha Net
reCAPTCHA for .NET library lets you easily use Google's reCAPTCHA in an ASP.NET Web Forms / MVC / ASP.NET Core application.
Stars: ✭ 116 (-4.92%)
Mutual labels:  asp-net
Aspnetbundling
An assortment of bundling utility classes like custom transformers and fixes for the ASP.NET Web Optimization bundling framework.
Stars: ✭ 61 (-50%)
Mutual labels:  asp-net
Sourcecodesniffer
The Source Code Sniffer is a poor man’s static code analysis tool (SCA) that leverages regular expressions. Designed to highlight high risk functions (Injection, LFI/RFI, file uploads etc) across multiple languages (ASP, Java, CSharp, PHP, Perl, Python, JavaScript, HTML etc) in a highly configurable manner.
Stars: ✭ 87 (-28.69%)
Mutual labels:  asp-net
Carter
Carter is framework that is a thin layer of extension methods and functionality over ASP.NET Core allowing code to be more explicit and most importantly more enjoyable.
Stars: ✭ 875 (+617.21%)
Mutual labels:  asp-net
Nemiro.oauth.dll
Nemiro.OAuth is a class library for authorization via OAuth protocol in .NET Framework
Stars: ✭ 45 (-63.11%)
Mutual labels:  asp-net
Ftserver Cs
Lightweight iBoxDB Full Text Search Server for C#
Stars: ✭ 81 (-33.61%)
Mutual labels:  asp-net
Csla
A home for your business logic in any .NET application.
Stars: ✭ 865 (+609.02%)
Mutual labels:  asp-net
Squidex
Headless CMS and Content Managment Hub
Stars: ✭ 1,583 (+1197.54%)
Mutual labels:  asp-net
Learn.forge.viewhubmodels
Learn Forge Tutorial: View your BIM 360 & Fusion models using 3-legged OAuth. Available in Nodejs & .NET
Stars: ✭ 19 (-84.43%)
Mutual labels:  asp-net
Tsadmin
asp.net web api 2 + vue.js +elementui 实现的前/后端分离的后台管理系统框架示例程序。
Stars: ✭ 70 (-42.62%)
Mutual labels:  asp-net
Seleniumcrawler
An example using Selenium webdrivers for python and Scrapy framework to create a web scraper to crawl an ASP site
Stars: ✭ 117 (-4.1%)
Mutual labels:  asp-net
Xclcms
XCLCMS is a lightweight CMS (content management system) background management system, Developed using asp.net MVC, it provides a simple and easy-to-use web API interface and supports multiple applications for a single merchant.
Stars: ✭ 107 (-12.3%)
Mutual labels:  asp-net
Dbwebapi
(Migrated from CodePlex) DbWebApi is a .Net library that implement an entirely generic Web API (RESTful) for HTTP clients to call database (Oracle & SQL Server) stored procedures or functions in a managed way out-of-the-box without any configuration or coding.
Stars: ✭ 84 (-31.15%)
Mutual labels:  asp-net

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));
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].