Hello,
1. onclickSubmit is not a part from jqGrid parameters, but of the particular add/edit/del parameters. Refer to docs how to use this.
2. Do not see what pickdatetime3 function do.
Regards
Tony
Hello,
We have as options
Hello,
Could you please post the code?
Regards
Tony
Hello,
One possible solution is not to use a Entaer key to store the data, but rather a custom button. See the examples.
Regards
Tony
Hello,
Maybe this will resolve the problem.
Open the grid.css file find the item
div.scroll
Remove this definition:
display : none;
from this item.
Let me known if this resolves the problem.
Regards
Tony
Hello,
Seems that all is correct. Did you mean sort is not correct or at all does not work?
What result do you have?
Which version of jqGrid do you use?
Regards
Tony
Hello,
Already answered of this.
REgards
Tony
Hello,
Not a jqGrid problem.
Regards
Tony
Hello,
Download the latest version 3.5 alfa 3 from GitHub.
in format options add formatoptions: { idName:'MyIDName'…}
in order to add your custom id name.
Regards
Tony
Hello,
Try with sortGrid method. See docs.
Regards
Tony
Hello,
After this line
var sortCol = $(”#agelist”).getGridParam(”sortname”);
if you have make alert(sortCol) what is the result.
Maybe you should check you code sidx=+sortCol – what is sidx – from where you have this value? What you expect from this expression. IMHO it will not work
Try first to construct you string and after that make the link.
Regards
Tony
Hello,
There was a similar post but.
If you have record (field) in the master where you have information about the children in the subgrid you can use afterInsertRow to clear the plus for the subgrid something like (suppose you have field childrecords in colModel)
afterInsertRow: function(rowid, aMasterRow) {
if(parseInt(aMasterRow.childrecords,10) === 0) {
// remove the plus from subgrid
$(“td.sgcollapsed”,”#”+rowid).empty().unbind('click');
}
}
If you do not want to remove the plus just use unbind.
Enjoy
Tony
Hello,
See this forum for this error. There are a couple of such posts. One possible solution – include jqModal.js and jqModal.css – maybe you missed the CSS file.
Regards
Tony
Hello,
Consult the docs. There are two options (in grid.custom.js)
1.GridDestroy
2.GridUnload
Regards
Tony
Hello,
Forgot that window.opener.document.getElementById('list') return object and not string.
Try :
$(window.opener.document.getElementById('list')).getDataIDs()
instead.
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top