$.ajax({
url: configLIST.urlGammeLiens,
data: {
gammeId: gammeId
},
type: 'POST',
cache: false,
success: function (partial) {
$('#prep-body-container').html(partial);
$('.e-gantt-splitter').addClass('autoWidth');
$('#prep-modal').modal('show');
// Optional: eval(document.getElementById('prep-body-container').querySelector('script').innerHTML);
}
});