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.6.5
05/05/2010
11:58
Avatar
admin
Admin
Members
Forum Posts: 66
Member Since:
05/05/2007
sp_UserOfflineSmall Offline

Exactly three years after first publishing of jqGrid, we are happy to announce the 3.6.5 release of jqGrid. You should consider this release more as bug fix release (more than 30 fixes), but we have added a lot of new enchantments. The most important of them are:

  • Extended ARIA support
  • SearchFilter enchantments

The full list of fixes and changes can be found here

We working hard on the upcoming 3.7 release. Soon it will be available as alfa in the GitHub.

Kind Regard
jqGrid Team

05/05/2010
16:21
Avatar
Les
Member
Members
Forum Posts: 44
Member Since:
11/12/2009
sp_UserOfflineSmall Offline

Tony:

>>> Added new option in colModel title. Default is true. If false the title is not displayed in the cell. Also with this is possible to define a custom formatter and put what you want value for the title.

Do you have an example of a custom formatter for the title?  What are the parameters?

I don't see that this is documented.

Thx,

Les

07/05/2010
16:31
Avatar
adrian.crapciu
Member
Members
Forum Posts: 3
Member Since:
06/10/2009
sp_UserOfflineSmall Offline

Hi, just tested the new version in Chrome and Safari. It seems to be a problem Uncaught Error: NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7. The grid is not populated just the Loading... is displayed.

07/05/2010
17:03
Avatar
tony
Sofia, Bulgaria
Moderator
Members

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

Hello,

For me the demo pages works fine in Safari Chrome.

Maybe you will need to look here:

http://groups.google.com/group.....adf9c0ffb7

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.

08/05/2010
19:00
Avatar
Les
Member
Members
Forum Posts: 44
Member Since:
11/12/2009
sp_UserOfflineSmall Offline

Tony:

You write in the release notes:

"Also with this is possible to define a custom formatter and put what you want value for the title."

How is this possible?  The doc states that the title option can be boolean only, not a function.

Do you have an example how to use the custom title formatter?

I put each question on a separate line, so it's easier answer and harder to ignore. Laugh

Thx,

Les

10/05/2010
12:36
Avatar
rotoflex
Member
Members
Forum Posts: 16
Member Since:
21/01/2010
sp_UserOfflineSmall Offline

Hi,

Is there a demo for that new searchFilters feature?

Regards,

Janne

13/05/2010
19:46
Avatar
williamfjordan
Member
Members
Forum Posts: 3
Member Since:
13/05/2010
sp_UserOfflineSmall Offline

Thank you for an excellent grid.

I noticed on the jqGrid 3.6.3 changes and fixes notes that you made the following change:

"Fix in inline edit when the edittype is textarea and a Enter is pressed - now we create a new line and do not save the data to the server."

When cellEdit is true, a column with  edittype:"textarea" has the same issue and needs a similar fix as the one made in the 3.6.3 release.  Enter will end the edit mode instead of adding a new line to the text area.

Does anyone have a work around for this?

16/05/2010
13:36
Avatar
tony
Sofia, Bulgaria
Moderator
Members

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

Hello,

@Les – it can be done like this:

colModel : [

{name: 'myname',title:false, formatter:mytitle, unformat:myuntitle... }

...

]

function mytitle (value, options, rowdata)

{

var mycustom_title = "<span title='HERE MY TITLE'>"+value+"</span>";

return mycustom_title;

}

function myuntitle(value, options, element)

{

return value;

}

@rotoflex

I will try to prepare one. The idea is simple, you will only need to set the postData with the filters object, something like this

postData: { filters:{groupOp:"AND", rules :[ {field:'some',op:'eq',data:'somedata'},.... ]} }

I hope You got the point.

@williamfjordan,

Should think on this. Thank you

Best 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.

18/05/2010
22:37
Avatar
Les
Member
Members
Forum Posts: 44
Member Since:
11/12/2009
sp_UserOfflineSmall Offline

Tony,

The example that you provided will format the cell content. This is not what I was looking for.  I'd like to format the cell title instead.

I thought the title option would be overloaded - either boolean or a function, but it doesn't' work this way.

function myTitle (value, options, rowdata) {

return "My title";

}

colModel : [

{name: 'myname',title:myTitle

...

]

21/05/2010
23:10
Avatar
glittle
Member
Members
Forum Posts: 31
Member Since:
23/01/2010
sp_UserOfflineSmall Offline

Help!

This new version has problems with JSON...

Please see details in this post:

/blog/?page_id=393/bugs/json-parser-error-with-jqgrid-3-6-5/&value=2399&type=9&include=0&search=1&ret=all

08/06/2010
08:04
Avatar
DR_CHAOS
New Member
Members
Forum Posts: 1
Member Since:
08/06/2010
sp_UserOfflineSmall Offline

nm

15/06/2010
12:14
Avatar
virgilio
philippines
Member
Members
Forum Posts: 3
Member Since:
15/06/2010
sp_UserOfflineSmall Offline

hi,

what is the best way to update select field values dynamically?

this is the one shown on edit form

here is how i update field value in colmodel

var value_manager_id = jQuery.parseJSON($.ajax({url:'/admin_users.php?id=managers&a=getValues&f=manager_id',async:false}).responseText);
jQuery('#managers').jqGrid('setColProp','manager_id',{editoptions:{value:value_manager_id}});

then later did a gridReload

the code updated the values in the grid display but not the selections in edit form.

thanks
regards

Your thoughts matter!

03/11/2010
14:53
Avatar
hitesh
New Member
Members
Forum Posts: 1
Member Since:
27/10/2010
sp_UserOfflineSmall Offline

admin said:Exactly three years after first publishing of jqGrid, we are happy to announce the 3.6.5 release of jqGrid. You should consider this release more as bug fix release (more than 30 fixes), but we have added a lot of new enchantments. The most important of them are:

  • Extended ARIA support
  • SearchFilter enchantments

The full list of fixes and changes can be found here We working hard on the upcoming 3.7 release. Soon it will be available as alfa in the GitHub. Kind Regard jqGrid Team


Hi Team,

You guys have developed great features.Its damn good. I need small help can u please help me out.

My scenario is I dont want the user to enter special characters in Toolbar Search.I wanna restrict them to enter special characters. Any help to sort this out

regards,nHitesh Kumar Vyas S

Forum Timezone: Europe/Sofia

Most Users Ever Online: 715

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