jqgrid-asp.net

jqGrid: using multiple methods to filter data

My requirement is to show a page with multiple filters to apply to grid data. Suppose we are talking about Orders and an order has the following attributes public class Order { public int OrderID public DateTime OrderDate public DateTime ShipmentDate public int OrderTotal public int OrderStatus } Inside the jqgrid...

jqgrid : send edited data back to controller

I am using ASP.Net MVC and placed a jqgrid on my page. The data source for my jqgrid is a xml file. I have populated a datatable from source xml and then converted this datatable into JSonObject to fill my jqgrid. I know it can be done in better ways but for now I have to apply it this way only.. In the jqgrid, I have enabled editmode f...

Dropdown list in jQGrid

Hi all, I have a jQueryGrid in which a dropdown list needs to be implemented. The code that I have written below just displays the data and that too only the first result: new JQGridColumn{ DataField = "DepartmentRoleName", HeaderText = "Deptt Role/s", Sortable = ...