Questions tagged [jqgrid-asp.net]

jqGrid-ASP.NET is a commercial grid component for ASP.NET & PHP based on the world's most popular and flexible jQuery grid plugin jqGrid.

jqGrid-ASP.NET is a commercial grid component for ASP.NET based on the world's most popular and flexible jQuery grid plugin jqGrid.

559 questions
4
votes
3 answers

Remove search operator (AND/OR) in multiplesearch jqGrid

I need to hide the operator in the search popup, but I cannot get it to work. I tried this, but both operators still appear: jQuery("#grilla").navGrid("#paginador", {del:false,add:false,edit:false},{},{},{},{ groupOps: [{ op: "OR", text: "any" }],…
Martin
  • 253
  • 3
  • 8
4
votes
0 answers

jqGrid first time trying to fetch data using JSON, not working for me

I'm trying to implement a simple grid using jqGrid, my first read example of my own. Here is my JSON code: $(document).ready(function() { $("#editgrid").jqGrid({ url: '<%= ResolveUrl("~/User/index") %>', datatype: "json", …
John
  • 1,459
  • 4
  • 21
  • 45
4
votes
1 answer

jqgrid: how to set toolbar options based on column value in row selected

I have a column field type having values (editable, readonly). all the rows will have one of these values populated. I want to enable/disable toolbaroption edit only if column value is editable for selected row. how can i achieve that in jqgrid.
harish
  • 149
  • 1
  • 4
  • 14
4
votes
2 answers

jqGrid Toolbar search operator by column

I'm using jqGrid Filter Toolbar. I'm testing it with 2 columns, one numeric and the other alphanumeric. All filter operations through the Filter Toolbar are made using the 'bw' (begins with) operator. How can I set the operation I want to be…
AlexCode
  • 4,055
  • 4
  • 33
  • 46
4
votes
1 answer

Change the Sequence of JqGrid Columns

I wanted to change the grid column sequence dynamically. For e.g. By default the grid will be loaded in LoginId, FirstName and LastName sequence. Based on some condition, I need to change the FirstName and LastName sequence. Is there any way I can…
Amar
  • 257
  • 2
  • 6
  • 14
4
votes
1 answer

jQgrid toolbar searching - dynamically remove search box from any column

I am using jqgrid version 4.4.4 and right now I am facing one problem related to toolbar searching. As I mention in heading, I want remove search box of toolbar search from any column "dynamically" during or after rendering a grid. I google it but I…
Rahul More
  • 615
  • 3
  • 13
  • 41
4
votes
1 answer

how to custom header jqgrid

i want create jqGrid like this I could divid body jqGrid i write this code var data = [[1, 45, "E123", "1/1/11", "Done", 100], [2, 46, "E124", "1/12/11", "Done", 100]]; $("#grid").jqGrid({ datatype: "local", height: 250, colNames:…
Pouya
  • 1,908
  • 17
  • 56
  • 78
4
votes
0 answers

jqGrid ASP.NET MVC4 initial sort

I'm using jqGrid as TreeGrid with ASP.NET MVC4 and have one problem: My Model: OrdersGrid = new JQGrid { Columns = new List() { new JQGridColumn …
christof
  • 421
  • 4
  • 15
4
votes
1 answer

Apply Jqgrid required attribute dynamically

In Jqgrid you apply a required attribute to any given field like this { name: 'Comments', index: 'Comments', editable: true, editrules: { required: true }, edittype: 'textarea' } How would I go about doing this dynamically? I'd like to make a…
Rohan Büchner
  • 5,333
  • 4
  • 62
  • 106
3
votes
2 answers

Get all rows data of a JQGrid in codebehind?

I'm adding some rows data to my JQGrid on client side with javascript : var grid = jQuery("#<%= JQGridMembers.ClientID %>"); var rowKey = grid.getGridParam("selrow"); var newRow = [{ ID: memberId, FullName: memberFullName, Percent:…
Mohammad Dayyan
  • 21,578
  • 41
  • 164
  • 232
3
votes
2 answers

Send array as postData parameter

I just started working with jqGrid this week. I'm attempting to make a generic function that I can call to load a jqGrid with different postData parameters, defined in the function call. Is there any way to do this? What I had considered was…
user1147941
  • 121
  • 2
  • 16
3
votes
2 answers

jqGrid Checkbox column

I have a fairly complex grid with two columns formatted as a checkbox. Those columns are defined as follow: { name: 'Alert_A', index: 'Alert_A', width: 22, align: 'center', sortable: false, formatter: CheckBoxFormatter, editable: true, edittype:…
Lorenzo
  • 29,081
  • 49
  • 125
  • 222
3
votes
2 answers

JqGrid Treegrid sorting issue

I hope you can help me, I have a structure like this: - root A -child_A1 -child_A1_1 -child_A1_2 -child_A1_3 -child_A2 -child_A2_1 -child_A2_2 -child_A2_3 - root B - child_B1 …
verofairy
  • 77
  • 3
  • 13
3
votes
2 answers

how to change jqgrid paging style

I want to change default pagination of jqgrid. I want the pagination as given below 1 2 3 4 5.. Next Is it supported by default? How can i achieve that? Thanks,
Tepu
  • 1,602
  • 2
  • 20
  • 28
3
votes
1 answer

How do I get the jqGrid Search column type when performing a search?

I'm using jqGrid 3.8.2 on ASP.net and I'm declaring a pretty simple jqGrid configuration. The data is showing correctly and I'm able to search by multiple conditions through the search dialog... no problem. The problem is that in the cases where I'm…
AlexCode
  • 4,055
  • 4
  • 33
  • 46
1 2
3
37 38