You can use userdata .
Add userdata to your server. JSON answer:
{"total":"","page":"","records":"","rows":[],"userdata":{"custom_field":"custom_value"}}
And then you can get the custom_field value inside your loadComplete tables:
custom_value = $('#table_id').getGridParam('userData').custom_field;
source share