Tagged Questions
0
votes
0answers
23 views
how to get all cells marked dirty in JQgrid
getChangedCells('all') returns data in current page of jQgrid.
What is the solution to get all cell marked dirty in entire jqgrid
For instance i change few records in 1st page and some records in ...
0
votes
0answers
112 views
In jQgrid check one checkbox on checking of another two checkboxes of same row
I am new in jQgrid programming. According to my question, in my jQgrid I have total 6 columns and that is Id, Name, View, Add, Edit, Delete. Excluding first two column i.e. Id and Name rest of the ...
0
votes
0answers
92 views
Jqgrid + postdata+grid reload
I am using jqgrid in my asp.net 4.0 web app.
I am showing jqrid with default values(order id ,date/status) on page load. User can perform customized search by entering values for order id ...
-1
votes
1answer
614 views
JQgrid 4.5 ASp.NET WebForms Populate Data with JQuery
I'm new at JQGrid. I can bind data to it via codebehind but i don't know how to bind from JQuery could you show me a source which i can learn how to do that ? Thank you
0
votes
1answer
542 views
jqgrid load from database does not work filterToolbar
I'm working with Asp.net MVC4, jqgrid 4.4.4 and jquery 1.9
The jqGrid is loaded from a query to the database, but I can not filter the fields, when I put a value doesn't search, it shows me the same ...
1
vote
0answers
123 views
Jquery UI jConfirm dialog not showing up on gridComplete of jqgrid
I am using jConfirm dialog for confirmation in jqgrid. All i want is when the gridComplete triggers it should popup a jConfirm dialog with Ok and cancel buttons when i hit ok it should setSeletion of ...
0
votes
1answer
298 views
jqgrid autocomplete reload grid on selection of option
I am writing a piece of code, where i have a jqgrid and a filter with a textbox on the top, i have used the jquery ui autocomplete functionality, everything works fine, but i need to customize the ...
0
votes
1answer
521 views
how to implement custom grouping in jqGrid
I'm starter in jqGrid, i write this code for Implement Grouping
$(function () {
var mydata = [
{ id: "11", invdate: "2007-10-01", name: "test", note: "note", ...
1
vote
2answers
573 views
JQgrid: During modal initialization, how would I determine what model is being created (add/edit)
I've got a case when i need to provide a different source id based on if the user is editing or adding. My initial idea was to set a hidden field's value using the beforeShowForm hook, but it seems ...
0
votes
1answer
116 views
Using JQGrid in Asp.Net Application
I'm trying to use jqGrid in my ASP.Net application, but I can't get it to work, can you guide me to any examples, steps, anything, I tried it once and I successfully loaded some data in it, but paging ...
3
votes
1answer
4k views
JQgrid: Get Json data
Is there any method I can get the full JSON data from Jqgrid when datatype is local along with the column name?
In this format : [{"firstname": "Chris"},{"firstname": "Dave"}]
0
votes
1answer
474 views
Jqgrid virtual Paging
Is there any example showing how to do virtual paging?
I want to load 25 records on page load, then load the other 25 records on top of the existing 25 when the user clicks on the pager or on next ...
0
votes
1answer
953 views
JqGrid GridView issue
If I set the gridView property to true, the table height is not set correctly, it is showing empty space beneath the last record.
I think it is completing the rowNum of the last page. Is it a bug or I ...
3
votes
1answer
1k views
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 ...
0
votes
2answers
457 views
JQuery… change hover state on focus & Limit keyboard navigation tab area
I'm using a JQgrid in one of my projects (JFiddle LINK). and would like
1.) the save & cancel button to highlight when a user tabs to it (same as on mouse over). Found this post but can't seem ...
3
votes
2answers
9k views
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,
...
0
votes
1answer
429 views
Hide subgrid header in jqgrid
I have inplemented a JQGrid alog with a subgrid.
I have a requirement of hiding only the subgrid headers(the outer main grid headers should still be visible).
I tried using the following code ...
4
votes
1answer
6k views
jqGrid: Reload Data
Here is my code:
$('#ShowName').autocomplete({
delay: 600,
minLength: 0,
source: function (request, response) {
$.ajax({
url: '<%: ...