diff --git a/docs/_i18n/zh-cn/documentation/methods.md b/docs/_i18n/zh-cn/documentation/methods.md index c86a5bcdf2..e2b92cd929 100644 --- a/docs/_i18n/zh-cn/documentation/methods.md +++ b/docs/_i18n/zh-cn/documentation/methods.md @@ -60,13 +60,13 @@ showAllColumns none - Show All the columns. + 显示所有列。 showAllColumns hideAllColumns none - Hide All the columns. + 隐藏所有列。 hidAllColumns @@ -86,7 +86,7 @@ params 从表格中删除数据,包括两个参数: - field: 需要删除的行的 field 名称。
+ field: 需要删除的行的 field 名称,
values: 需要删除的行的值,类型为数组。
remove @@ -108,7 +108,7 @@ params 插入新行,参数包括:
- index: 要插入的行的 index。
+ index: 要插入的行的 index,
row: 行的数据,Object 对象。 insertRow @@ -118,7 +118,7 @@ params 更新指定的行,参数包括:
- index: 要更新的行的 index。
+ index: 要更新的行的 index,
row: 行的数据,Object 对象。 updateRow @@ -127,7 +127,7 @@ showRow params 显示指定的行,参数包括:
- index: 要更新的行的 index 或者 uniqueId。
+ index: 要更新的行的 index 或者 uniqueId,
isIdField: 指定 index 是否为 uniqueid。 showRow-hideRow @@ -135,90 +135,89 @@ hideRow params 显示指定的行,参数包括:
- index: 要更新的行的 index。
+ index: 要更新的行的 index,
uniqueId: 或者要更新的行的 uniqueid。 showRow-hideRow getHiddenRows show - Get all rows hidden and if you pass the show parameter true the rows will be shown again, otherwise, the method - only will return the rows hidden. + 获取所有隐藏的行,如果show参数为true,行将再次显示,否则,只返回隐藏的行。 mergeCells options - Merge some cells to one cell, the options contains following properties:
- index: the row index.
- field: the field name.
- rowspan: the rowspan count to be merged.
- colspan: the colspan count to be merged. + 将某些单元格合并到一个单元格,选项包含以下属性:
+ index: 行索引,
+ field: 字段名称,
+ rowspan: 要合并的rowspan数量,
+ colspan: 要合并的colspan数量。 updateCell params - Update one cell, the params contains following properties:
- index: the row index.
- field: the field name.
- value: the new field value. + 更新一个单元格,params包含以下属性:
+ index: 行索引。
+ field: 字段名称。
+ value: 新字段值。 refresh params - Refresh the remote server data, you can set {silent: true} to refresh the data silently, and set {url: newUrl} to change the url. To supply query params specific to this request, set {query: {foo: 'bar'}} + 刷新远程服务器数据,可以设置{silent: true}以静默方式刷新数据,并设置{url: newUrl}更改URL。 要提供特定于此请求的查询参数,请设置{query: {foo: 'bar'}}。 refreshOptions options - Refresh the options + 刷新选项。 resetSearch text - Set the search text + 设置搜索文本。 showLoading none - Show loading status. + 显示加载状态。 hideLoading none - Hide loading status. + 隐藏加载状态。 checkAll none - Check all current page rows. + 选中当前页面所有行。 uncheckAll none - Uncheck all current page rows. + 取消选中当前页面所有行。 check index - Check a row, the row index start with 0. + 选中某一行,行索引从0开始。 uncheck index - Uncheck a row, the row index start with 0. + 取消选中某一行,行索引从0开始。 checkBy params - Check a row by array of values, the params contains:
- field: name of the field used to find records
- values: array of values for rows to check
- Example:
+ 按值或数组选中某行,参数包含:
+ field: 用于查找记录的字段的名称,
+ values: 要检查的行的值数组。
+ 例子:
$("#table").bootstrapTable("checkBy", {field:"field_name", values:["value1","value2","value3"]}) @@ -226,37 +225,37 @@ uncheckBy params - Uncheck a row by array of values, the params contains:
- field: name of the field used to find records
- values: array of values for rows to uncheck
- Example:
+ 按值数组取消选中某行,参数包含:
+ field: 用于查找记录的字段的名称,
+ values: 要检查的行的值数组。
+ 例子:
$("#table").bootstrapTable("uncheckBy", {field:"field_name", values:["value1","value2","value3"]}) resetView params - Reset the bootstrap table view, for example reset the table height. + 重置引导表视图,例如重置表高度。 resetWidth none - Resizes header and footer to fit current columns width + 调整页眉和页脚的大小以适合当前列宽度。 destroy none - Destroy the bootstrap table. + 销毁表。 showColumn field - Show the specified column. + 显示指定的列。 hideColumn field - Hide the specified column. + 隐藏指定的列。 getHiddenColumns @@ -311,22 +310,22 @@ expandRow index - Expand the row that has the index passed by parameter if the detail view option is set to True. + 如果详细视图选项设置为True,可展开索引为 index 的行。 collapseRow index - Collapse the row that has the index passed by parameter if the detail view option is set to True. + 如果详细视图选项设置为True,可收起索引为 index 的行。. expandAllRows - is subtable - Expand all rows if the detail view option is set to True. + none + 如果详细视图选项设置为True,可展开所有行。 collapseAllRows - is subtable - Collapse all rows if the detail view option is set to True. + none + 如果详细视图选项设置为True,可收起开所有行。