Aha,
Maybe you should append (use append) the content of the second subgrid after the first one.
Regards
Tony
The
About the first issue. This is z-Index problem. I will change this behavior. Currently you can resolve this when you edit the datepicke css and change the z-index of the datepicker to something like z-index:3500. By default jqModal uses 3000 to z-index.
What you mean multiselect does not work in “Custom edit”? –
Dan,
Good sugestion. Maybe one possible solution is pass a parameters to click event (something like the unique id of the element). This way you will have full control to this element. It will be little difficult (but not impossible) since the structure of the “button” here is complicated – it is not a real input type button.
Regards
Tony
Thanks. It is a bug and will be corrected.
Regards
Tony
Thanks,
I will try this.
Regards
Tony
Han,
I will consider these problems. Thank you.
Regards
Tony
If you use grid as subgrid this can be done using setCaption method – also check the documentation and there is example in the demo page.
If you use only a subgrid this can not be done.
Regards
Tony
Will be happy with this.
Also, If you are ready with this module you can publish here post.
Best regards
Tony
I do not understand what you mean but,
$(“#maingrid”).jqGrid({
…..
subGridRowExpanded : function(subgrid_id, row_id){
…
$(“#subgrid_t”).jqGrid({
…….
subGridRowExpanded : function(sub_subgrid_id, row_id){
….
$(“#sub_subgrid_t”).jqGrid({
…….
}) // sub_subgrid_t
}
}) // subgrid_t
} // subgrid_id
}) // maingrid
Hope this help
Regards
Tony
Denis,
I do not think that this is a bug. The reasons for this behavior could be other things. I do not exclude that there is a problem with jqGrid. Also check you code again. Are all other modules loaded (you can check this using FireBug)
Regards
Tony
…
Thank you Brad.
Yes, there is problem with the loader.
If you go back with the old loader you will have maybe
problems in certain IE browsers when you reload the page. It depends
on how the browser handle the cashe. I will correct this problem as soon
as possible.
regards
Tony
You can do that easy.
Use onSortCol (this event fires before sorting)
onSortCol : function (colname, colindex) {
if(colname == “visible_col”) {
$(“#mygrid”).setGridParam({sortname:”hidden_col”});
//no need to use triger reloadgrid
}
}
The only missing part here is a sorting image
jqGrid is flexible 
Best Regards
Tony
Please tell me what is wrong here – you can not catch the selected rows or you can not delete them?
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top