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
This topic is locked No permission to create posts
sp_Feed Topic RSS sp_TopicIcon
jqGrid 4.0
09/04/2011
19:01
Avatar
admin
Admin
Members
Forum Posts: 66
Member Since:
05/05/2007
sp_UserOfflineSmall Offline

Today we are happy to inform you that we have released the 4.0 version of jqGrid.
This release is a major with a lot of additions and bug fixes.

The full list of changes can be read here:
http://www.trirand.com/jqgridw....._and_fixes

We have just begin to update the documentation and will be finished after some days.

Enjoy
Regards
jqGrid Team

10/04/2011
02:27
Avatar
ooo
Member
Members
Forum Posts: 5
Member Since:
13/02/2011
sp_UserOfflineSmall Offline

good stuff.  is there anything that is not backward compatible from an 3.8.2 API point of view that is worth worrying about ??  things seem to work out of the box without too much trouble.

11/04/2011
18:31
Avatar
sebabal
sebabal
Member
Members
Forum Posts: 5
Member Since:
19/05/2009
sp_UserOfflineSmall Offline

Hi thanks for the new release, looks great!

Does this release support jquery 1.5.2?

Thanks

13/04/2011
20:04
Avatar
strgg
Member
Members
Forum Posts: 16
Member Since:
19/03/2011
sp_UserOfflineSmall Offline

hi

is this bug fixed? It does not seem so according to code.

http://www.trirand.com/blog/?p.....the-pager/

here is my help-thread with the solution posted by oleg:

http://www.trirand.com/blog/?p.....8;search=1

it is really annoying for firefox users since the whole pagination does not work. it would be very friendly if someone from the dev-team at least gives a statement about this. using multiple identic div id's is also not xhtml compliant and for sure will create further issues in the future too.

if there is no willing to take that into an update we will create a fork with a complete and easy-2-use php class and cross-browser compatibility mainly through fixing this annoying bug.

for users needing help you can pm me for the corrected files for 3.8.2 and 4.0 or you can follow oleg's instruction using eclipse or notepad++ and patch rename the variables with regex.

14/04/2011
10:38
Avatar
tony
Sofia, Bulgaria
Moderator
Members

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

Hello,

Just wonder if you check the code.

The problem is fixed, but not in the way described in the links provided from you.

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.

15/04/2011
04:28
Avatar
strgg
Member
Members
Forum Posts: 16
Member Since:
19/03/2011
sp_UserOfflineSmall Offline

Hello Tony,

Thanks for information. Much appreciated. Couldn't find any statement/changelog. No - i know i could not make out from reading the code.

Best regards

17/04/2011
21:47
Avatar
ooo
Member
Members
Forum Posts: 5
Member Since:
13/02/2011
sp_UserOfflineSmall Offline

I see it says: "We have just begin to update the documentation and examples and they will be finished after some days."

when do you think you will have some example on the demo page?  i don't see anything aboug jqgrid 4.0 on the demo page.

18/04/2011
17:36
Avatar
cfnievaKarira
Spain
Member
Members
Forum Posts: 4
Member Since:
10/11/2010
sp_UserOfflineSmall Offline

Hi, I upgraded to the latest version of jqgrid and filtering lists stopped working.

I have a column I defined as follows:

{name: 'Status', index: 'status', width: 100, align: "left", title: false, formatter:GenericStatusFormatter, stype: "select" editoptions: {value :":"+GetResources.GetLiteral ("lblAll ")+"; PreEntry:" + GetResources.GetLiteral (")+";lblPreEntry Entry: "+ GetResources.GetLiteral (")+"; lblEntry Diagnostic:" +GetResources.GetLiteral (lblDiagnostic ") + "Order:" + GetResources.GetLiteral (")+";lblOrder Repair: "+ GetResources.GetLiteral (")+"; lblRepair Verify:" +GetResources.GetLiteral ("Notify ")+"; lblVerify" + GetResources.GetLiteral (")+";lblNotify Closed: "+ GetResources.GetLiteral (")+"; lblClosed Delivered:" +GetResources.GetLiteral (")+"; lblDelivered Canceled: "+ GetResources.GetLiteral("lblCanceled ")+"; Rejected:" + GetResources.GetLiteral (lblRejected ")}}

when I change the value of the combo does not send the value selected in the combo tothe server.

The definition of the grid filter is:

$ ("# myGrid"). jqGrid ('filterToolbar', {defaultSearch: "cn"});

Why has stopped functioning filtering by selecting an option from the combo?

18/04/2011
17:54
Avatar
cfnievaKarira
Spain
Member
Members
Forum Posts: 4
Member Since:
10/11/2010
sp_UserOfflineSmall Offline

Hello again, I discovered that now, to filter, the value of name must be the same as thevalue of the index in the definition of colmodel

{name: 'Status', index: 'status', width: 100 ... {name: 'Status', index: 'Status', width: 100,

Thanks

18/04/2011
17:58
Avatar
johnnytuna
Member
Members
Forum Posts: 3
Member Since:
24/01/2011
sp_UserOfflineSmall Offline

I would also be greatful if you could include some more extensive documentation/examples of the changed search functionality, specifically the custom search.

Thanks

22/04/2011
09:27
Avatar
Inara
Member
Members
Forum Posts: 26
Member Since:
27/07/2009
sp_UserOfflineSmall Offline

It appears there has been in a change in handling for column width in the new version. In past versions, jqGrid used the defined width to set the column width including any margin/padding. Now, the column itself is given the full width assigned in the colModel, with the margin and padding added on. Would it be possible to add a setting to toggle it back to the old behavior? It's much easier to get the grid to align with other fields on-screen when the column sizes include the extra spaces, and I would prefer not to have to update the colModel for every grid just to get them back to displaying as they used to.

Thanks for all of your continued work on this project.

22/04/2011
12:44
Avatar
OlegK
Germany
Member
Members
Forum Posts: 1255
Member Since:
10/08/2009
sp_UserOfflineSmall Offline

Hello Inara,

jqGrid has shrinkToFit parameter which default value is true. It means if you set width parameter of the grid, the column width will be so chnaged to have the common specified grid width. In the way one can easy aligns the grid with other fields on-screen.

If you define no width parameter for the grid the width value from the colModel will be used to set CSS width of the corresponding column header. Different browsers interpret the value either as inner or as outer width.

Best regards
Oleg

22/04/2011
19:02
Avatar
Inara
Member
Members
Forum Posts: 26
Member Since:
27/07/2009
sp_UserOfflineSmall Offline

Oleg,

I'm largely curious as to why the default functionality changed, especially with no note in the changelog, since it definitely breaks backwards compatibility in terms of sizing. (It resulted in grids with many columns just trailing off the edges of a screen due to the extra five pixels of width being added to every column). My current solution is simply to strip five pixels off of every column in our code generator (to account for the margin and padding), but I imagine that process could be extremely tedious for anyone that's created a number of grids manually, and would need to update each of them individually.

Regards,

Inara

23/04/2011
14:43
Avatar
OlegK
Germany
Member
Members
Forum Posts: 1255
Member Since:
10/08/2009
sp_UserOfflineSmall Offline

Inara,

the changes in the width calculation of jqGrid 4.0 are bug fixes and not the changes in the grid behavior, so one can not speak about the breaking of the backwards compatibility. You can read more about the bug and it fix here. If you play on the bugs you can easy solve your problem with inserting of the width parameter of jqGrid (see my previous answer). For more understanding you can look at the width property of the column in the priveous version of jqGrid after the grid was displayed. You can see that all the width property of all column was changed (reduced) even if the total grid width is small and should not be really shrinked. This old behavior followed to problems especially in case of the usage column hiding and showing after the first showing of the grid.

Regards
Oleg 

26/04/2011
19:52
Avatar
marktait
New Member
Members
Forum Posts: 1
Member Since:
26/04/2011
sp_UserOfflineSmall Offline

Hi - is this the same as this:

http://www.trirand.net/default.aspx

One is for purchase, this appears to be open source??

Thanks, Mark

05/05/2011
17:20
Avatar
ooo
Member
Members
Forum Posts: 5
Member Since:
13/02/2011
sp_UserOfflineSmall Offline

Did posting checkboxes from an edit form change in jqgrid 4.0.  i now see "true:false" being passed as the value in the Querystring no matter if i have it checked yes or now.

has anyone else seen this bug ??

09/05/2011
09:57
Avatar
ab1sh3k
New Member
Members
Forum Posts: 2
Member Since:
09/05/2011
sp_UserOfflineSmall Offline

Hi all,

 I am planning to set up jqGrid 4.0.0 in one of my project and I get a strange error saying

"this.p is undefined in line 137″. My imports are as follows,

<script src="http://code.jquery.com/jquery-1.5.2.min.js" type="text/javascript"></script>
<script src="js/i18n/grid.locale-en.js" type="text/javascript"></script>
<script src="js/jquery.jqGrid.min.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.8.12.custom.min.js" type="text/javascript"></script>

Is this an issue with 4.0? or am I doing something wrong?

Thanks,

Abi

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

A have a suggestion,

In some grids i use the editCell to the first row after reloadGrid method but not all times, so i guess you can put an parameter callBack receiving an function in method reloadGrid to trigger on gridcomplete.

Sorry for my english.

Thanks in advance!

23/05/2011
17:06
Avatar
nabi
New Member
Members
Forum Posts: 1
Member Since:
23/05/2011
sp_UserOfflineSmall Offline

Hi,

how about support of jQuery 1.6.1 ???

Nabi

23/05/2011
20:05
Avatar
tony
Sofia, Bulgaria
Moderator
Members

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

Hello,

We will wait a couple of time, since it is unknow when other functions or behaviours  will come back to its old behaviour.

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.

This topic is locked No permission to create posts
Forum Timezone: Europe/Sofia

Most Users Ever Online: 715

Currently Online:
32 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