From 7eb44ab5bc15fa4183653c856fe12f3892e1a0c5 Mon Sep 17 00:00:00 2001 From: zhixin Date: Wed, 13 Dec 2017 23:03:03 +0800 Subject: [PATCH] Fix #3223: add body-scroll event docs --- docs/_i18n/en/documentation/events.md | 6 ++++++ docs/_i18n/es/documentation/events.md | 6 ++++++ docs/_i18n/zh-cn/documentation/events.md | 20 +++++++++++++------- 3 files changed, 25 insertions(+), 7 deletions(-) diff --git a/docs/_i18n/en/documentation/events.md b/docs/_i18n/en/documentation/events.md index 39b67ee191..e0f7960a09 100644 --- a/docs/_i18n/en/documentation/events.md +++ b/docs/_i18n/en/documentation/events.md @@ -245,5 +245,11 @@ $('#table').on('event-name.bs.table', function (e, arg1, arg2, ...) { params Fires after the click the refresh button. + + onScrollBody + scroll-body.bs.table + + Fires when table body scroll. + diff --git a/docs/_i18n/es/documentation/events.md b/docs/_i18n/es/documentation/events.md index 6fcef46c45..a7bf9d41a6 100644 --- a/docs/_i18n/es/documentation/events.md +++ b/docs/_i18n/es/documentation/events.md @@ -212,5 +212,11 @@ params Se ejecuta cuando se cliquea el botón de refresh. + + onScrollBody + scroll-body.bs.table + + Incendios cuando desplazamiento del cuerpo de la tabla. + diff --git a/docs/_i18n/zh-cn/documentation/events.md b/docs/_i18n/zh-cn/documentation/events.md index 511aef2e67..fbd32b79c7 100644 --- a/docs/_i18n/zh-cn/documentation/events.md +++ b/docs/_i18n/zh-cn/documentation/events.md @@ -78,9 +78,9 @@ sort.bs.table name, order - Fires when user sort a column, the parameters contains:
- name: the sort column field name
- order: the sort column order. + 当用户对某列进行排序时触发,参数包括:
+ name:排序列的 filed 名称,
+ order:排序顺序。 @@ -88,9 +88,9 @@ check.bs.table row - Fires when user check a row, the parameters contains:
- row: the record corresponding to the clicked row. - $element: the DOM element checked. + 当用户选择某一行时触发,参数包含:
+        row:与点击行对应的记录,
+        $element:选择的DOM元素。 @@ -223,7 +223,13 @@ onRefresh refresh.bs.table params - Fires after the click the refresh button. + 点击刷新按钮后触发。 + + + onScrollBody + scroll-body.bs.table + + 表格 body 滚动时触发。