Add, Edit, Delete In jqGrid With ASP.NET Web API

This post explains how to implement a simple CRUD (Create, Read, Update, and Delete) in jqGrid with ASP.NET MVC 4 Web API. If you are beginner to Web API, read this post to create a web API that supports CRUD operations. We will use GET, POST, PUT and DELETE HTTP methods for Select, Insert, Update and Delete operations respectively.

jqGrid: Drag and Drop columns (Reordering) with Javascript Array

jqGrid is a jQuery plugin that provides solutions to present and manipulate tabular data and display datagrid based on HTML,CSS and Javascript. I see many articles related to column reorder but all are based on server side data. So I decided to write on jqgrid column reordering based on javascript array data and retrieve data after column reordering.