37 lines
2.0 KiB
Markdown
37 lines
2.0 KiB
Markdown
# [ui-lib].Grid
|
||
|
||
UI Mordern Gridview Library
|
||
|
||
## 1.0.7
|
||
* 调整: [(event) onBodyScrolled(e: Event, index: number, count: number)](Grid.html#event:onBodyScrolled) - 列滚动时触发的事件,增加显示行起始索引与一屏呈现行数
|
||
* 新增: [`currentItem: GridRowItem | null`](Grid.html#currentItem) - 获取当前选中的行对象
|
||
|
||
## 1.0.6
|
||
* 新增: [`col.switch`](GridColumnDefinition.html) - 列复选框样式改为 `ui-switch`
|
||
|
||
## 1.0.5
|
||
* 新增: [`col`.filterTemplate: (this: GridColumnDefinition, item: ValueItem) => HTMLElement](GridColumnDefinition.html) - 列头过滤项的模板函数
|
||
|
||
## 1.0.4
|
||
* 调整: `Dropdown` 组件支持虚模式
|
||
* 新增: `ui-switch` 样式(iOS 切换组件)
|
||
* 新增: `Dropdown` 组件增加 `ignoreAll` 参数
|
||
|
||
## 1.0.3
|
||
* 调整: [showSortPanel(callback?: Function, layout?: boolean)](Grid.html#showSortPanel) 现支持输入搜索列,已添加的列不会重复显示在下拉数据源中,增加回调函数与 layout 更新复选框。
|
||
* 新增: [onRowChanged(action: "update" | "add" | "remove", items: GridRowItem[], indexes: number | number[])](Grid.html#onRowChanged) - 行发生变化时触发的事件
|
||
### bugs
|
||
* 修复: 清空多列排序后列头箭头没有清除的异常。
|
||
|
||
## 1.0.2
|
||
* 新增: [export(compressed: string | boolean, module?: string) : Promise<GridExportData>](Grid.html#export) - 导出已压缩的数据源
|
||
|
||
## 1.0.1
|
||
* 新增: [total: GridRowItem](Grid.html#total) - 获取或设置合计行数据
|
||
* 新增: [showSortPanel()](Grid.html#showSortPanel) - 显示多列排序设置面板
|
||
* 新增: [setItem(index: number, item: GridRowItem)](Grid.html#setItem) - 设置单行数据
|
||
* 新增: [addItem(item: GridRowItem, index?: number): GridRowItem](Grid.html#addItem) - 添加行数据
|
||
* 新增: [addItems(array: GridRowItem[], index?: number) : GridRowItem[]](Grid.html#addItems) - 批量添加行数据
|
||
* 新增: [removeItem(index: number) : GridRowItem](Grid.html#removeItem) - 删除行数据
|
||
* 新增: [removeItems(indexes?: number[]): GridRowItem[]](Grid.html#removeItems) - 批量删除行数据
|