hello,
I tested the free version of the library and yesterday we bought the enterprise license.
With the free license I loaded the grid with an ajax call,
function load_grid(){
surl= '../mygrid.php';
$('#bodycontainer').html('');
$.ajax({
url: surl,
async: false,
success: function (data) {
$('#bodycontainer').append('<div class="container" id="divgrid"></div>')
$('#divgrid').html(data);
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status);
alert(thrownError);
}
});
}
installed the enterprise license the grid is not displayed.
I tried to replace the jqgrid_dist.php file with the free license one and everything work.
any suggestion?
King regards
Alessandro
1 Answers
Hello,
Please try with this code to load datagrid via ajax call.
Code: https://www.gridphp.com/demo/demos/master-detail/master-detail.phps Line 184.
Demo: https://www.gridphp.com/demo/demos/master-detail/master-detail.php

PS: Please use either direct email OR forum for a question. If the question is of public nature and does not have confidential code or files, you can send on group.
Your Answer

