Type Definitions
F_Component_on(event, args)
- Description:
事件回调函数
Parameters:
Name | Type | Description |
---|---|---|
event |
jQuery.Event | 事件对象,参考jQuery.Event |
args |
Object | 事件参数 |
F_DropDownList_filter(filterText, listItemText)
- Description:
自定义过滤器函数(返回false则排除当前列表项)
Parameters:
Name | Type | Description |
---|---|---|
filterText |
string | 用户输入值 |
listItemText |
string | 列表项文本 |
F_GridColumn_editGetter(editor, columnId, rowId) → {Object}
- Description:
自定义编辑器获取函数
Parameters:
Name | Type | Description |
---|---|---|
editor |
F.Field | 单元格编辑器 |
columnId |
string | 列标识符 |
rowId |
string | 行标识符 |
Returns:
编辑器的值
- Type
- Object
F_GridColumn_editSetter(editor, cellValue, columnId, rowId)
- Description:
自定义编辑器设置函数
Parameters:
Name | Type | Description |
---|---|---|
editor |
F.Field | 单元格编辑器 |
cellValue |
Object | 单元格的值 |
columnId |
string | 列标识符 |
rowId |
string | 行标识符 |
F_GridColumn_renderer(cellValue, params) → {jQuery|string}
- Description:
自定义单元格渲染函数
Parameters:
Name | Type | Description | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cellValue |
string | 单元格的值 |
|||||||||||||||||||||
params |
Object | 参数 Properties
|
Returns:
单元格的值
- Type
- jQuery | string
F_GridColumn_rowGroupSummaryRenderer(summaryRowIndex, rowData)
- Description:
自定义行分组的合计行渲染器函数
Parameters:
Name | Type | Description |
---|---|---|
summaryRowIndex |
number | 合计行的行号索引 |
rowData |
Object | 行分组数据 |
F_GridColumn_sorter(cellValueX, cellValueY, rowDataX, rowDataY, columnId, sortField, sortDirection)
- Description:
自定义表格列排序函数
Parameters:
Name | Type | Description |
---|---|---|
cellValueX |
Object | 第一个单元格的值 |
cellValueY |
Object | 第二个单元格的值 |
rowDataX |
Object | 第一个单元格对应行的数据 |
rowDataY |
Object | 第二个单元格对应行的数据 |
columnId |
string | 列标识符 |
sortField |
string | 排序字段 |
sortDirection |
string | 排序方向 |
F_GridColumn_summaryRenderer(summaryRowIndex)
- Description:
自定义合计行渲染器函数
Parameters:
Name | Type | Description |
---|---|---|
summaryRowIndex |
number | 合计行的行号索引 |
F_Grid_Column_renderer(columnId) → {string}
- Description:
获取列渲染值的回调函数
Parameters:
Name | Type | Description |
---|---|---|
columnId |
string | 列标识符 |
Returns:
列渲染值
- Type
- string
F_Grid_cardRenderer(params) → {string}
- Description:
自定义卡片渲染函数
Parameters:
Name | Type | Description | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
params |
Object | 参数 Properties
|
Returns:
行渲染值
- Type
- string
F_Grid_resolveColumn(column)
- Description:
遍历列的回调函数
Parameters:
Name | Type | Description |
---|---|---|
column |
Object | 列对象 |
F_Grid_resolveRow(rowData, rowPath)
- Description:
遍历行的回调函数
Parameters:
Name | Type | Description |
---|---|---|
rowData |
Object | 行数据 |
rowPath |
string | 行路径(仅树表格有效) |
F_Grid_rowGroup_renderer(groupValue, rowData)
- Description:
自定义行分组渲染器函数
Parameters:
Name | Type | Description |
---|---|---|
groupValue |
string | 行分组值 |
rowData |
Object | 行数据 |
F_Grid_rowRenderer(params)
- Description:
自定义行渲染函数
Parameters:
Name | Type | Description | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
params |
Object | 参数 Properties
|
F_Tree_resolveNode(nodeData, nodePath)
- Description:
遍历节点的回调函数
Parameters:
Name | Type | Description |
---|---|---|
nodeData |
Object | 节点对象 |
nodePath |
string | 节点路径 |
F_doPostBack_callback(data, textStatus, xhr)
- Description:
回发请求的回调函数
Parameters:
Name | Type | Description |
---|---|---|
data |
string | 响应数据 |
textStatus |
string | 描述响应状态的字符串 |
xhr |
string | 执行本次回发请求的 XMLHttpRequest 对象 |
F_initTreeTabStrip_beforeNodeClick(event, nodeId)
- Description:
节点点击事件之前执行
Parameters:
Name | Type | Description |
---|---|---|
event |
jQuery.Event | 事件对象 |
nodeId |
string | 树节点标识符 |
F_initTreeTabStrip_beforeTabAdd(event, tabOptions, nodeId)
- Description:
添加选项卡之前执行
Parameters:
Name | Type | Description |
---|---|---|
event |
jQuery.Event | 事件对象 |
tabOptions |
Object | 选项卡参数 |
nodeId |
string | 树节点标识符 |
F_rateEvents_callback(event, value)
- Description:
评分改变的回调函数
Parameters:
Name | Type | Description |
---|---|---|
event |
jQuery.Event | 事件对象 |
value |
number | 评分值 |