jqGrid 3.4.3 released
This is a bug fix release for jqGrid version 3.4. Here is a full list of fixed bugs:
- fixed bug in treeGrid when try to reload a nodes with trigger(“reloadGrid”)
- fixed bug in getRootNodes method when adjacency model is used – treeGrid
- getRowData return correct value of the expanded column when used in treeGrid
- fixed bug in rowList to send non numeric values
- fixed bug when grid is used with google maps
- fixed bug in subgrid to prevent caching in IE when ajax request is made
- fixed bug in getCell method
- support of Y-m-d \\TH:i:s in formatter
- fixed bug in the loader to support utf-8
- added Czech and Swedish Translations
When i use the editGridRow with url, i can see in firebug the post parameters, but never the reply. In fact this just add a blank row in my jqgrid. Someone can tell me what’s wrong please.
thank you
Here is my code.
jQuery(“#rowed4”).editGridRow(“new”,{top:32,
left:630,
height:217,
//{closeicon: ‘themes/coffee/images/ico-close.gif’},
addCaption:’Novo’,
bSubmit: ‘Inserir’,
bCancel: ‘Cancelar’,
mytype:’POST’,
url:’insert.php’,
addedRow:’first’,
reloadAfterSubmit:false,
closeAfterAdd:true})
the getRowData doesn’t work for IE7 + JQuery 1.3.1 + JQgrid 3.4.3
@Assaf
Believe me this does not help me. If I say to the mechanic – my car does not work – how do you think they answer me? So I need to ask what does not work? Do you have example configuration and data?
Best Regards
Tony
Hi, I’m unable to find the packed folder in the download. Should I be packing it seperately using the Dean Edwards Packer? Which files should be packed then?
I am developing using ASP.NET
Regards,
Hadi
Hey I noticed that if you set the mtype to [mtype:’POST’; mtype:’PUT’; mtype:’DELETE’] it supports RESTful routes in Rails.
where can i find “fixed bug in treeGrid when try to reload a nodes with trigger(â€reloadGridâ€)” ?
because i hv a problem in reloadgrid, my grid doesn’t reload at all
It’s not working for me :(.
I use jquery 1.3.2 and the following code:
// + jQuery(“#Id”).val()
jQuery(document).ready(function() {
jQuery(“#lineTable”).jqGrid({
url: ‘/Line/Grid’,
datatype: ‘json’,
mtype: ‘GET’,
colNames: [‘Téléphone’,’Terminal’,’Designation’,’Recid’,’Source’],
colModel: [
{ name:’Telephone’,index:’Telephone’,width:’5em’,align:’left’},
{ name:’TerminalType’,index:’TerminalType’,width:’5em’,align:’left’},
{ name:’Designation’,index:’Designation’,width:’5em’,align:’left’},
{ name: ‘Recid’, index: ‘Recid’, width: ‘5em’, align: ‘left’ },
{ name: ‘Source’, index: ‘Source’, width: ‘5em’, align: ‘left’}],
imgpath: ‘../../Scripts/themes/basic/images’
});
});
the function sending the JSON data is implemented through ASP.NET MVC:
{ total = 1, page = 1, records = 2, rows = {f__AnonymousType0[2]} }
where rows like: { Recid = 28, Telephone = “0234434343”, TerminalType = “Tel”, Designation = “”, Source = “FT” } (and asp.net mvc correctly converts it to the JSON format.
Results:
FF3 stays “Loading” the data eternally (after I have verified through firebug that all demanded images, files and the JSON response have been correctly downloaded).
IE8 says “Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 4.0.20506)
Timestamp: Mon, 22 Jun 2009 16:37:11 UTC
Message: Invalid argument.
Line: 1077
Char: 4
Code: 0
URI: http://localhost:6922/Scripts/jQuery-1.3.2.js“
I tested with 3.4.4 and the problem persists, but in IE8 it is:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 4.0.20506)
Timestamp: Mon, 22 Jun 2009 16:57:20 UTC
Message: ‘undefined’ is null or not an object
Line: 90718037
Char: 21341
Code: 0
URI: http://localhost:6922/Subscriber/Edit/2
@ducking
Hi I know it’s been 2 years, but I got the same bug, on IE. Did you find a solution.