Hello Abu,
How to on the event "on_after_insert" to perform a complete reload grid (to fill the combo box to the new values)?
Regards,
Davor
1 Answers
This is not supported as base feature, however you can get help from this article.
http://geekswithblogs.net/renso/archive/2009/07/02/jqgrid-dynamically-loading-select-options.aspx
You can connect all code in grid loadcomplete event using
$e["js_on_load_complete"] = "do_onload";
$grid->set_events($e);
<script>
function do_onload()
{
// your ajax code to load data and fill select
}
</script>
Your Answer