I\'m working with a project that uses jqGrid in the most recent version. The thing is that this project is PHP(5.6) and uses JSON to \"translate/talk\" to jqGrid framework,
Using jQGrid $.extend, it is possible to set colModel attributes settings, properties and events of colModel's even after inital settings loaded.
EXAMPLE:
var p = $("#tabela-laudos").jqGrid("getGridParam");
//=================================================
p.colModel[p.iColByName.laudo] = $.extend(true,
{},
p.colModel[p.iColByName.laudo], //NEW VALUES BELOW
{
editoptions:
{
placeholder: "Ex.: 17777"
},
}
);