Bond, а так?
$('#tblLeads').dynatable({
// Параметры ajax запроса - по сути такие же как в $.ajax
dataset: {
ajax: true,
beforeSend: function(xhr, settings) {
this.type = 'POST';
},
ajaxUrl: '/dynatable-operation.html',
ajaxCache: null,
ajaxOnLoad: true,
ajaxMethod: 'GET',
ajaxDataType: 'json',
ajaxData: {},
records: []
});
});