浏览代码

Possibility to modify/process loaded data before rendering into the t… (#7304)

Documentation update: onLoadSuccess
Oleksii Kuznietsov 1 年之前
父节点
当前提交
a99dfa2667
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      site/docs/api/events.md

+ 1 - 1
site/docs/api/events.md

@@ -217,7 +217,7 @@ $('#table').on('event-name.bs.table', function (e, arg1, arg2, ...) {
 
   It fires when remote data is loaded successfully. The parameters contain:
 
-  * `data`: the remote data.
+  * `data`: the remote data loaded into the table. (Note: this data cannot be modified once it’s loaded into the table. If you need to process received data before using it in the table, write your custom [responseHandler](/docs/api/table-options/#responsehandler) instead.)
   * `status`: the status code of `jqXHR`.
   * `jqXHR`: jqXHR object, which is a super set of the XMLHTTPRequest object. For more information, see the [jqXHR Type](http://api.jquery.com/Types/#jqXHR).