[]
        
(Showing Draft Content)

Forguncy.Forguncy.ListViewValueChangedEventArg

接口: ListViewValueChangedEventArg

Forguncy.Forguncy.ListViewValueChangedEventArg

为表格值发生变化事件提供数据。

Example

var listview = Forguncy.Page.getListView("表格1");
listview.bind("ValueChanged", function (e, param) {
//
// 
// {
// CellRanges:[{Row:-1,Column:-1,RowCount:-1,ColumnCount:-1}],
// OldRowCount:0,
// NewRowCount:3,
// }
//
// 
// {
// CellRanges:[{Row:1,Column:2,RowCount:1,ColumnCount:1}],
// OldRowCount:3,
// NewRowCount:3,
// }
//
// 
// {
// CellRanges:[{Row:1,Column:2,RowCount:1,ColumnCount:1},{Row:3,Column:4,RowCount:1,ColumnCount:1}],
// OldRowCount:3,
// NewRowCount:3,
// }
//
// 
// {
// CellRanges:[{Row:-1,Column:-1,RowCount:-1,ColumnCount:-1}],
// OldRowCount:3,
// NewRowCount:2,
// }
//
// 
// {
// CellRanges:[{Row:3,Column:-1,RowCount:1,ColumnCount:-1}],
// OldRowCount:3,
// NewRowCount:4,
// }
});

属性

CellRanges

CellRanges: CellRange[]

值变化的单元格区域。


NewRowCount

NewRowCount: number

表格值变化后的行数。


OldRowCount

OldRowCount: number

表格值变化前的行数。