我想在我的页面上显示jqGrid中显示的项目的总值。我能想到的唯一方法是让服务器使用网格数据返回它,但不知道如何在jqGrid请求它到达时拦截它。
答案 0 :(得分:3)
您可以使用userdata
。
将userdata
添加到服务器的JSON响应中:
{"total":"","page":"","records":"","rows":[],"userdata":{"custom_field":"custom_value"}}
然后您可以在表custom_field
函数中获得loadComplete
的值:
custom_value = $('#table_id').getGridParam('userData').custom_field;