Forum

November 2nd, 2014
A A A
Avatar

Lost password?
Advanced Search

— Forum Scope —




— Match —





— Forum Options —





Minimum search word length is 3 characters - maximum search word length is 84 characters

The forums are currently locked and only available for read only access
sp_Feed Topic RSS sp_TopicIcon
jqGrid 3.8.2
14/12/2010
16:28
Avatar
admin
Admin
Members
Forum Posts: 66
Member Since:
05/05/2007
sp_UserOfflineSmall Offline

We are happy to announce the 3.8.2 release of jqGrid.
This version has a lot of "small", but very useful additions and changes which simplify the code cration.
Here are some of the changes:

  • jQuery 1.4.4 support
  • jqGrid now should not have any dependency on other JS libs - we have only one name-space
  • colum Model templating
  • New Formatter "actions"
  • ...

As usual we have fix a lot of bugs

A full list of changes can be read on Changelog
Thank you all that helped us for this release.

Kind Regards
jqGrid Team

14/12/2010
19:41
Avatar
vlad4800
New Member
Members
Forum Posts: 2
Member Since:
14/12/2010
sp_UserOfflineSmall Offline

You have a new feature: when user clicks again on a row it selects/deselects it. But this overwrites and interferes with my ondblClickRow logic. How can I overwride automatic deselecting of a row(the previous behaviour)?

28/12/2010
13:50
Avatar
dpugh
Member
Members
Forum Posts: 12
Member Since:
04/06/2010
sp_UserOfflineSmall Offline

I have found this as well, for me it's when the user double clicks on a row other than the one which is currently selected. Frown It's broken the release for me, as it is too fundamental.

Don't think the new logic is correct.

User clicks on the row $t.p.selrow is set to row selected, so good so far.  Then the user double clicks the row, first click event sets $t.p.selrow to null, second sets $t.p.selrow to the clicked row, followed by double click event and $t.p.selrow is the clicked row. So everything appears OK.

But if the user double clicks a row when there isn't a row selected or another row is selected.  First click event set $t.p.selrow to new row, second sets $t.p.selrow to null, then $t.p.selrow in the following double click event is now null. So breaks!

28/12/2010
14:30
Avatar
dpugh
Member
Members
Forum Posts: 12
Member Since:
04/06/2010
sp_UserOfflineSmall Offline

Sorry, in summary selrow option can no longer be relied on in the dblClick event, a work around is

....

ondblClickRow:function(rowid,iRow,iCol,e){

$(this).jqGrid("setGridParam",{"selrow":rowid});

.....

},

.....

Not sure whether this is intentional, as it could possibly cause people a lot of work.

28/12/2010
19:10
Avatar
rocketbob
Member
Members
Forum Posts: 10
Member Since:
27/05/2009
sp_UserOfflineSmall Offline

Column model templating is a great addition.  What types of templates can be used? jquery tmpl?  I haven't found any documentation on its use...?

Thanks,

Bob

29/12/2010
02:20
Avatar
OlegK
Germany
Member
Members
Forum Posts: 1255
Member Since:
10/08/2009
sp_UserOfflineSmall Offline

Hello Bob,

You are right, that current there are currently no information about templates in the documentation. It works very easy and is nothing more as the usage of $.extend inside of the corresponding jqGrid code. Nevertheless it could reduce the length and the readability of colModel. You can find the information in my sggestion here. Take in the consideration that $.jgrid.defaults.cmTemplate are implemented as additional cmTemplate jqGrid parameter.

Best regards
Oleg

17/01/2011
18:51
Avatar
andyscott12
Member
Members
Forum Posts: 4
Member Since:
17/01/2011
sp_UserOfflineSmall Offline

hi,

will this still work with jQuery 1.3.2 or ?

thanks

17/01/2011
20:08
Avatar
Tildeboy
New Member
Members
Forum Posts: 1
Member Since:
17/01/2011
sp_UserOfflineSmall Offline

Before the name space move, I was using the method like info_dialog for my own purposes, now that the namespace has changed, those calls throw an object expected/null reference error.  How can methods like info_dialog be called from outside jqgrid now?

18/01/2011
04:02
Avatar
mnaoumov
Member
Members
Forum Posts: 6
Member Since:
17/01/2011
sp_UserOfflineSmall Offline

Dear Author. Do you have any ideas about new release date?

And also I would like to ask what of the features from main page poll are you going to implement first.

For my project we need Freeze Columns feature.

I found one workaround on the forum. However this workaround has an ugly layout issue. Maybe for you it would be easier to have a look there.

/blog/?page_id=393/discussion/new-freeze-column-plugin/&value=frozen&type=1&include=1&search=1&ret=all

Thanks a lot for your amazing product

08/02/2011
17:28
Avatar
phipps73
Member
Members
Forum Posts: 17
Member Since:
12/06/2008
sp_UserOfflineSmall Offline

Any ideas when support for jQuery 1.5 will be added? I just tried 3.8.2 using jQuery 1.4.4 which works then I get an error with jQuery 1.5 on the same grid. The error is:

invalid label

Is there something I need to change in my json return or colmodel settings (upgraded grid from 3.6.5 to 3.8.2 so may have missed a change that I needed to make)?

Thanks,

Dave

08/02/2011
20:15
Avatar
tony
Sofia, Bulgaria
Moderator
Members

Moderators
Forum Posts: 7721
Member Since:
30/10/2007
sp_UserOfflineSmall Offline

Hello Dave,

A example of this is highley recommended.

I just begin to thest the demo with jquery 1.5, but until now i do not see any problems.

Kind Regards

Tony

For professional UI suites for Java Script and PHP visit us at our commercial products site - guriddo.net - by the very same guys that created jqGrid.

09/02/2011
14:13
Avatar
ThaDafinser
Austria
Member
Members
Forum Posts: 5
Member Since:
09/02/2011
sp_UserOfflineSmall Offline

Hello,

i also had to downgrade jQuery to 1.4.4

With jQuery 1.5 i couldn't use the toolbar filter.

It was a problem with column names like "sysAddress.addFirstname" maybe jQuery 1.5 doesn't like "dot" between anymore?

18/02/2011
00:13
Avatar
reyx
Brasil
New Member
Members
Forum Posts: 2
Member Since:
18/02/2011
sp_UserOfflineSmall Offline

How can i catch the onsucces event in formatter "actions" after del or edit an row?

19/02/2011
00:31
Avatar
sebabal
sebabal
Member
Members
Forum Posts: 5
Member Since:
19/05/2009
sp_UserOfflineSmall Offline

phipps73 said:

Any ideas when support for jQuery 1.5 will be added? I just tried 3.8.2 using jQuery 1.4.4 which works then I get an error with jQuery 1.5 on the same grid. The error is:

invalid label

Is there something I need to change in my json return or colmodel settings (upgraded grid from 3.6.5 to 3.8.2 so may have missed a change that I needed to make)?

Thanks,

Dave


I am getting the same message looks like it does not like my json return. Any ideas?

This is the returned JSON, i could not find any problems with it. Sorry for the format I tried to find a way to just put the code as text but I could not find a way. I

Is there a way to disable the HTML format when I post?

20/02/2011
16:13
Avatar
whittet
New Member
Members
Forum Posts: 1
Member Since:
20/02/2011
sp_UserOfflineSmall Offline

Did you include jquery.validate.min.js?  I just submitted a hotfix for an $.ajax override to the jquery.validate.js file here https://github.com/jzaefferer/jquery-validation/pull/45/files which resolved the "invalid label" issue for me.  

I can post the hotfix here if needed, just let me know.  Thank you, Shane Whittet

01/03/2011
00:12
Avatar
stormlifter
Member
Members
Forum Posts: 4
Member Since:
29/09/2010
sp_UserOfflineSmall Offline

Awesome. Thanks for hotfix.

Forum Timezone: Europe/Sofia

Most Users Ever Online: 715

Currently Online:
36 Guest(s)

Currently Browsing this Page:
1 Guest(s)

Top Posters:

OlegK: 1255

markw65: 179

kobruleht: 144

phicarre: 132

YamilBracho: 124

Renso: 118

Member Stats:

Guest Posters: 447

Members: 11373

Moderators: 2

Admins: 1

Forum Stats:

Groups: 1

Forums: 8

Topics: 10592

Posts: 31289

Newest Members:

, razia, Prankie, psky, praveen neelam, greg.valainis@pa-tech.com

Moderators: tony: 7721, Rumen[Trirand]: 81

Administrators: admin: 66

Comments are closed.
Privacy Policy   Terms and Conditions   Contact Information