v 2.0.15
This commit is contained in:
parent
f0a4d4101d
commit
2b51d77b60
|
@ -680,7 +680,7 @@ var Table = function (_Component) {
|
||||||
expandable: false,
|
expandable: false,
|
||||||
store: this.store,
|
store: this.store,
|
||||||
dragborderKey: this.props.dragborderKey,
|
dragborderKey: this.props.dragborderKey,
|
||||||
rowDraggAble: props.rowDraggAble,
|
rowDraggAble: this.props.rowDraggAble,
|
||||||
onDragRow: this.onDragRow
|
onDragRow: this.onDragRow
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -818,7 +818,7 @@ var Table = function (_Component) {
|
||||||
rootIndex: rootIndex,
|
rootIndex: rootIndex,
|
||||||
syncHover: props.syncHover,
|
syncHover: props.syncHover,
|
||||||
bodyDisplayInRow: props.bodyDisplayInRow,
|
bodyDisplayInRow: props.bodyDisplayInRow,
|
||||||
rowDraggAble: props.rowDraggAble,
|
rowDraggAble: this.props.rowDraggAble,
|
||||||
onDragRow: this.onDragRow,
|
onDragRow: this.onDragRow,
|
||||||
contentTable: this.contentTable
|
contentTable: this.contentTable
|
||||||
})));
|
})));
|
||||||
|
|
|
@ -708,7 +708,7 @@ var TableHeader = function (_Component) {
|
||||||
var _rowLeng = row.length - 1;
|
var _rowLeng = row.length - 1;
|
||||||
return _react2["default"].createElement(
|
return _react2["default"].createElement(
|
||||||
"tr",
|
"tr",
|
||||||
{ key: index, style: rowStyle, aaaa: true, className: filterable && index == rows.length - 1 ? 'filterable' : '' },
|
{ key: index, style: rowStyle, className: filterable && index == rows.length - 1 ? 'filterable' : '' },
|
||||||
row.map(function (da, columIndex, arr) {
|
row.map(function (da, columIndex, arr) {
|
||||||
var thHover = da.drgHover ? " " + clsPrefix + "-thead th-drag-hover" : "";
|
var thHover = da.drgHover ? " " + clsPrefix + "-thead th-drag-hover" : "";
|
||||||
delete da.drgHover;
|
delete da.drgHover;
|
||||||
|
|
|
@ -42450,7 +42450,7 @@
|
||||||
expandable: false,
|
expandable: false,
|
||||||
store: this.store,
|
store: this.store,
|
||||||
dragborderKey: this.props.dragborderKey,
|
dragborderKey: this.props.dragborderKey,
|
||||||
rowDraggAble: props.rowDraggAble,
|
rowDraggAble: this.props.rowDraggAble,
|
||||||
onDragRow: this.onDragRow
|
onDragRow: this.onDragRow
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -42588,7 +42588,7 @@
|
||||||
rootIndex: rootIndex,
|
rootIndex: rootIndex,
|
||||||
syncHover: props.syncHover,
|
syncHover: props.syncHover,
|
||||||
bodyDisplayInRow: props.bodyDisplayInRow,
|
bodyDisplayInRow: props.bodyDisplayInRow,
|
||||||
rowDraggAble: props.rowDraggAble,
|
rowDraggAble: this.props.rowDraggAble,
|
||||||
onDragRow: this.onDragRow,
|
onDragRow: this.onDragRow,
|
||||||
contentTable: this.contentTable
|
contentTable: this.contentTable
|
||||||
})));
|
})));
|
||||||
|
@ -45738,7 +45738,7 @@
|
||||||
var _rowLeng = row.length - 1;
|
var _rowLeng = row.length - 1;
|
||||||
return _react2["default"].createElement(
|
return _react2["default"].createElement(
|
||||||
"tr",
|
"tr",
|
||||||
{ key: index, style: rowStyle, aaaa: true, className: filterable && index == rows.length - 1 ? 'filterable' : '' },
|
{ key: index, style: rowStyle, className: filterable && index == rows.length - 1 ? 'filterable' : '' },
|
||||||
row.map(function (da, columIndex, arr) {
|
row.map(function (da, columIndex, arr) {
|
||||||
var thHover = da.drgHover ? " " + clsPrefix + "-thead th-drag-hover" : "";
|
var thHover = da.drgHover ? " " + clsPrefix + "-thead th-drag-hover" : "";
|
||||||
delete da.drgHover;
|
delete da.drgHover;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -525,7 +525,7 @@ class Table extends Component {
|
||||||
expandable={false}
|
expandable={false}
|
||||||
store={this.store}
|
store={this.store}
|
||||||
dragborderKey={this.props.dragborderKey}
|
dragborderKey={this.props.dragborderKey}
|
||||||
rowDraggAble={props.rowDraggAble}
|
rowDraggAble={this.props.rowDraggAble}
|
||||||
onDragRow={this.onDragRow}
|
onDragRow={this.onDragRow}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
@ -677,7 +677,7 @@ class Table extends Component {
|
||||||
rootIndex = {rootIndex}
|
rootIndex = {rootIndex}
|
||||||
syncHover = {props.syncHover}
|
syncHover = {props.syncHover}
|
||||||
bodyDisplayInRow = {props.bodyDisplayInRow}
|
bodyDisplayInRow = {props.bodyDisplayInRow}
|
||||||
rowDraggAble={props.rowDraggAble}
|
rowDraggAble={this.props.rowDraggAble}
|
||||||
onDragRow={this.onDragRow}
|
onDragRow={this.onDragRow}
|
||||||
contentTable={this.contentTable}
|
contentTable={this.contentTable}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -632,7 +632,7 @@ class TableHeader extends Component {
|
||||||
<thead className={`${clsPrefix}-thead`} {...attr} data-theader-fixed='scroll' ref={_thead=>this._thead = _thead} >
|
<thead className={`${clsPrefix}-thead`} {...attr} data-theader-fixed='scroll' ref={_thead=>this._thead = _thead} >
|
||||||
{rows.map((row, index) => {
|
{rows.map((row, index) => {
|
||||||
let _rowLeng = (row.length-1);
|
let _rowLeng = (row.length-1);
|
||||||
return(<tr key={index} style={rowStyle} aaaa className={(filterable && index == rows.length - 1)?'filterable':''}>
|
return(<tr key={index} style={rowStyle} className={(filterable && index == rows.length - 1)?'filterable':''}>
|
||||||
{row.map((da, columIndex, arr) => {
|
{row.map((da, columIndex, arr) => {
|
||||||
let thHover = da.drgHover
|
let thHover = da.drgHover
|
||||||
? ` ${clsPrefix}-thead th-drag-hover`
|
? ` ${clsPrefix}-thead th-drag-hover`
|
||||||
|
|
Loading…
Reference in New Issue