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