jqgrid-asp.net

jqGrid get th and thead using Jquery

How are you able to get theader on a jqgrid using JQuery. ...

jqGrid selects row only once, subsequently cannot select any other row, grid stuck

I've got a jqGrid along with a jquery UI button toolbar. My toolbar consists of View & Edit Mode. In my jqGrid onSelectRow I check edit mode with method isInEditMode. This returns true if the button with ui-active-state is edit button. My grid seems loads correctly, and hover classes turn on/off as a drag my mouse over the rows. If I'm ...

jqgrid loading deleted records after refresh

Hi, This is quite strange. here is the issue: Some Info: I'm using a multi-select jqgrid. I have my own delete button to delete multiple orders The problem: When i press the delete button on the pager of my jqgrid, the records are deleted from the database but JqGrid shows some records (4-5). On refreshing the grid, correct number...

Send Ajax request from JqGrid ShowLink click

I need to load some dynamic html when a user click on a link in a jqGrid. here is my definition function loadUserAdministrationList() { jQuery("#userlist").jqGrid({ url: '/Administration/GetData/', datatype: 'json', mtype: 'GET', colNames: ['Username', 'Prénom', 'Nom', 'Courriel'], colModel:...

Unable to display JQGrid master/detail

Hi I have been using JQGrid to displays the list of products. Now selecting a product from the grid should display the details of the product in detail view using ASP.NET & Ajax JQGrid is in one update panel and detail form is in another updatepanel, Now if I write a function for onSelectRow and trigger a server side event for updating...

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 do this? I tried doing like: {name:'UserName',index:'UserName',width:82,sortable:false},...

jqGrid ASP .Net Inline Edit - Update a cell value when another cell value changes

Hi, I am trying to do a calculation of an editable cell in the JQGrid when changing the value of two other columns. I have an hours column that I want to display the hours between two given dateTime columns. So when a user is performing an inline edit and changes either the StartDateTime or the EndDateTime columns the hours column should...

JQGrid trigger("reloadGrid") in ASP.NET MVC not firing

I'm not sure how to use trigger("reloadGrid") to refresh a JQGrid. I've tried many things but none of them will get trigger to fire. I have a grid I created through ASP.NET using the MVC dll from JQGrid. Now I'm attempting to change the grid onload of the page. $(document).ready(function() { $('#myGrid').setGridParam({rowNum: 20}).t...

Adding command column to a jqGrid in Asp.Net MVC

Dearest All, I hope you have a good morning. I'd like to use jqGrid in my Asp.Net app. So far, I've been producing an html table and converting it to a grid, but I'd like to try a better approach: loading the data via an AJAX call as it's supposed with the grid. I found out how to fetch data, but I'd like to have the "Edit" and "Delete...

jqGrid - How to calculated column to jqgrid?

Hi All, I am working on an ASP MVC 2 application.It has a jqGrid and data in the grid is populated from the JSON object returned by the controller. My grid has 3 columns 'UnitNo','Area' and 'Rate per sqm'. These column values are retrived from the database. Now what i need is to add a 4th column 'Unit Price' which is calculated by multi...

Get selected value from rowlist and pass it to query string laong with page number in JqGrid

Hi All, I have a row list as [10,20,30] i want to pass the selected row list ie if (20 is selected ill pass that 20 as query string and retrieve the value). and also i want to select the page number too. What are the possible ways to achieve the selected value from row list and current page number and then pass the value to query strin...

Navigation links are not working in jqGrid 3.6

Hi All, My Page navigation links are not firing. What may be the issue. ...

Need to override Search Filter url param (_search) in jgrid the jquery plugin?

Hi I have created a user message page with this plugin. The grid will show the user inbox and the user outbox(sent) messages. here's a little code: jQuery(document).ready(function() { //...some stuff currentURL = function() { return 'json_member_mail.php?task='+ currentBox; //where cur...

Changing rowId on jqgrid?

I have a jqgrid that contains some data, the first column of which is the numerical PK from the database. When my delete method gets called, it passes in the rowId of the grid (which it should.) However, my back end doesn't know what data is on what row. Is there a way I can set the row ID to my PK field? Or is there a way to force i...

jqgrid in asp.net mvc

how to start working with jqgrid...basics about how to use jqgrid in asp.net mvc application. means wat namespace to be included...and all ... thanks in advance ...

Problem in jqgrid loading data while Scrolling

Hi All, I got the loading of data when scrolling the grid. But with some issues when i scroll down to page 2 the datas in page 2 iterates for many time so for atleast 7 times. Can any one help me out where is the problem. I Need to do this on very urgent basis. I hope im clear with the question. ...

toolbar in jqGrid?

hello, I would like to create a toolbar in jqGrid with only the buttons that usually are on the pager. At the moment I have the following definition $("#foroGrid").jqGrid('navGrid', '#pager', { add: true, addtitle: 'Add Foro', edit: true, edittitle: 'Edit Foro', del: true, deltitle: 'Delete Foro', refresh: ...

jqGrid and the autowidth option. How does it works?

Hi, I am using jqGrid with the autowidth option set to true. Standing to the documentation: When set to true, the grid width is recalculated automatically to the width of the parent element. This is done only initially when the grid is created. In order to resize the grid when the parent element changes width you should apply cust...

jqGrid custom buttons with edit/delete behaviour

Hello, I am using custom edit/delete functions in jqGrid and I really enjoyed the fact that they call your custom function after checking if a row was selected or not. Now I would like to add two more buttons and I would like to use the same behaviour of the edit/delete, so when a row is selected my function get called but if no rows h...

use Session in jqgrid

$.Session("obj",""); Im trying to store the selected value in the session value. But i get the error as "Session is undefined" What may be the issue ...