var dataAdapter = new $.jqx.dataAdapter(source,
{
//Set the http header before calling the api.
beforeSend: function (jqXHR, settings) {
jqXHR.setRequestHeader('TenantCode', 'TenantCode');
}
});
I have no problem with adding references to jQuery, I only want to implement the nested grid without any jQuery syntax in it. For example, I don’t want any $('#grid').jqxGrid(); in my nested grid code.