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
Error with keyIndex when use subGrid
07/10/2008
04:15
Avatar
vatman
Russia
Member
Members
Forum Posts: 6
Member Since:
07/10/2008
sp_UserOfflineSmall Offline

when  use subGrid: true

incorrect calculate parametr keyIndex (order number of fields with "key: true")

Reason: 

look code. If "subGrid: true" then first element in ts.p.colModel is cell for subgrid. and keyIndex will set more for one. 

for (var i=0; i<ts.p.colModel.length;i++) {

if (ts.p.colModel[i].key===true) { ts.p.keyIndex = i;

break;}}
Thank you.
07/10/2008
08:45
Avatar
tony
Sofia, Bulgaria
Moderator
Members

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

Hello,

This is discussed before. It is not a bug. If you look into the code above this fragment you will find the answer. The subgrid column is added before this.

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.

04/11/2008
23:42
Avatar
Sam Chrisp
New Member
Members
Forum Posts: 1
Member Since:
05/11/2008
sp_UserOfflineSmall Offline

Hi tony,

Are you sure this isn't a bug?

With the following configuration:

jQuery("#mygrid").jqGrid({
	datatype: "json",
   	colNames:['#','Name'],
   	colModel:[
   		{name:'id',index:'id', width:60, key:true},
   		{name:'name',index:'name', width:120}
	],
	subGrid: false,
	...

If subGrid is false, the 'id' column will be the key column.

However, if subGrid is true, the 'name' column will become the key column, which is not correct is it?

Modifying the code in grid.base.js (line 1147ff) with a decrement if subGrid is set resolves this:

for (var i=0; i<ts.p.colModel.length;i++) {
	if (ts.p.colModel[i].key===true) {
		if (ts.p.subGrid) i--;
		ts.p.keyIndex = i;
		break;
	}
}
06/11/2008
01:40
Avatar
tony
Sofia, Bulgaria
Moderator
Members

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

Hello,

Thank you for this - you are right.

There is a more easy way to do that. Just move this piece of code

before adding the subgrid and multiselect columns in the

colModel

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.

Forum Timezone: Europe/Sofia

Most Users Ever Online: 715

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