merge
This commit is contained in:
commit
d6c534f63f
|
@ -103,7 +103,7 @@ class Demo extends Component {
|
|||
| haveExpandIcon | 控制是否显示行展开icon.**注:该参数只有在和expandedRowRender同时使用才生效** | Function(record, index):bool | () =>false |
|
||||
| filterable | 是否开启根据条件来过滤数据 | bool | false
|
||||
| filterDelay | 触发过滤输入的时候的ms延迟时间 | number | 300
|
||||
| onFilterRowsChange | 触发过滤输入操作以及其他的回调 | (key,val) => () | ()=>()
|
||||
| onFilterRowsChange | 触发过滤输入操作以及其他的回调,回车执行函数或者失去焦点触发回调 | (key,val) => () | () => ()
|
||||
| onFilterRowsDropChange | 过滤下拉条件的回调 | (key,val)=>() | () => ()
|
||||
|
||||
|
||||
|
|
|
@ -55,22 +55,32 @@ var FilterType = function (_Component) {
|
|||
_this.clearText = function () {
|
||||
_this.setState({
|
||||
text: ""
|
||||
}, function () {
|
||||
_this.changeText("");
|
||||
});
|
||||
var onChange = _this.props.onChange;
|
||||
|
||||
onChange && onChange("");
|
||||
};
|
||||
|
||||
_this.changeText = function (eve) {
|
||||
_this.setState({
|
||||
text: eve
|
||||
});
|
||||
};
|
||||
|
||||
_this.changeText = function (val) {
|
||||
_this.changeTextCall = function (eve) {
|
||||
var onChange = _this.props.onChange;
|
||||
|
||||
if (onChange) {
|
||||
onChange(val);
|
||||
_this.setState({
|
||||
text: val
|
||||
});
|
||||
if (eve.keyCode == 13) {
|
||||
onChange(eve.target.value);
|
||||
}
|
||||
};
|
||||
|
||||
_this.changeTextCallBlur = function (val) {
|
||||
var onChange = _this.props.onChange;
|
||||
|
||||
onChange && onChange(val);
|
||||
};
|
||||
|
||||
_this.changeSelect = function (val) {
|
||||
var onChange = _this.props.onChange;
|
||||
|
||||
|
@ -129,7 +139,9 @@ var FilterType = function (_Component) {
|
|||
},
|
||||
value: _this.state.text,
|
||||
className: className,
|
||||
onChange: _this.changeText
|
||||
onChange: _this.changeText,
|
||||
onKeyDown: _this.changeTextCall,
|
||||
onBlur: _this.changeTextCallBlur
|
||||
}),
|
||||
_react2["default"].createElement(_FilterDropDown2["default"], {
|
||||
onSelectDropdown: onSelectDropdown,
|
||||
|
@ -196,8 +208,13 @@ var FilterType = function (_Component) {
|
|||
}
|
||||
//清除文本
|
||||
|
||||
|
||||
//设置文本
|
||||
|
||||
//回车执行函数
|
||||
|
||||
//失去焦点后执行函数
|
||||
|
||||
//设置下拉值
|
||||
|
||||
//清除下拉值
|
||||
|
|
|
@ -250,8 +250,9 @@ var TableHeader = function (_Component) {
|
|||
rendertype: type,
|
||||
clsPrefix: clsPrefix,
|
||||
className: clsPrefix + ' filter-text',
|
||||
onChange: (0, _throttleDebounce.debounce)(filterDelay || 300, _this.handlerFilterTextChange.bind(_this, dataIndex)),
|
||||
onSelectDropdown: _this.handlerFilterDropChange.bind(_this, dataIndex),
|
||||
onChange: (0, _throttleDebounce.debounce)(filterDelay || 300, _this.handlerFilterTextChange.bind(_this, dataIndex))
|
||||
// onChange={this.handlerFilterTextChange.bind(this, dataIndex)}
|
||||
, onSelectDropdown: _this.handlerFilterDropChange.bind(_this, dataIndex),
|
||||
filterDropdown: rows[1][index]['filterdropdown']
|
||||
});
|
||||
//下拉框选择
|
||||
|
|
|
@ -12722,8 +12722,9 @@
|
|||
rendertype: type,
|
||||
clsPrefix: clsPrefix,
|
||||
className: clsPrefix + ' filter-text',
|
||||
onChange: (0, _throttleDebounce.debounce)(filterDelay || 300, _this.handlerFilterTextChange.bind(_this, dataIndex)),
|
||||
onSelectDropdown: _this.handlerFilterDropChange.bind(_this, dataIndex),
|
||||
onChange: (0, _throttleDebounce.debounce)(filterDelay || 300, _this.handlerFilterTextChange.bind(_this, dataIndex))
|
||||
// onChange={this.handlerFilterTextChange.bind(this, dataIndex)}
|
||||
, onSelectDropdown: _this.handlerFilterDropChange.bind(_this, dataIndex),
|
||||
filterDropdown: rows[1][index]['filterdropdown']
|
||||
});
|
||||
//下拉框选择
|
||||
|
@ -13715,22 +13716,32 @@
|
|||
_this.clearText = function () {
|
||||
_this.setState({
|
||||
text: ""
|
||||
}, function () {
|
||||
_this.changeText("");
|
||||
});
|
||||
var onChange = _this.props.onChange;
|
||||
|
||||
onChange && onChange("");
|
||||
};
|
||||
|
||||
_this.changeText = function (eve) {
|
||||
_this.setState({
|
||||
text: eve
|
||||
});
|
||||
};
|
||||
|
||||
_this.changeText = function (val) {
|
||||
_this.changeTextCall = function (eve) {
|
||||
var onChange = _this.props.onChange;
|
||||
|
||||
if (onChange) {
|
||||
onChange(val);
|
||||
_this.setState({
|
||||
text: val
|
||||
});
|
||||
if (eve.keyCode == 13) {
|
||||
onChange(eve.target.value);
|
||||
}
|
||||
};
|
||||
|
||||
_this.changeTextCallBlur = function (val) {
|
||||
var onChange = _this.props.onChange;
|
||||
|
||||
onChange && onChange(val);
|
||||
};
|
||||
|
||||
_this.changeSelect = function (val) {
|
||||
var onChange = _this.props.onChange;
|
||||
|
||||
|
@ -13789,7 +13800,9 @@
|
|||
},
|
||||
value: _this.state.text,
|
||||
className: className,
|
||||
onChange: _this.changeText
|
||||
onChange: _this.changeText,
|
||||
onKeyDown: _this.changeTextCall,
|
||||
onBlur: _this.changeTextCallBlur
|
||||
}),
|
||||
_react2['default'].createElement(_FilterDropDown2['default'], {
|
||||
onSelectDropdown: onSelectDropdown,
|
||||
|
@ -13856,8 +13869,13 @@
|
|||
}
|
||||
//清除文本
|
||||
|
||||
|
||||
//设置文本
|
||||
|
||||
//回车执行函数
|
||||
|
||||
//失去焦点后执行函数
|
||||
|
||||
//设置下拉值
|
||||
|
||||
//清除下拉值
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -50,7 +50,7 @@ import 'bee-table/build/Table.css';
|
|||
| haveExpandIcon | 控制是否显示行展开icon.**注:该参数只有在和expandedRowRender同时使用才生效** | Function(record, index):bool | () =>false |
|
||||
| filterable | 是否开启根据条件来过滤数据 | bool | false
|
||||
| filterDelay | 触发过滤输入的时候的ms延迟时间 | number | 300
|
||||
| onFilterRowsChange | 触发过滤输入操作以及其他的回调 | (key,val) => () | ()=>()
|
||||
| onFilterRowsChange | 触发过滤输入操作以及其他的回调,回车执行函数或者失去焦点触发回调 | (key,val) => () | () => ()
|
||||
| onFilterRowsDropChange | 过滤下拉条件的回调 | (key,val)=>() | () => ()
|
||||
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@
|
|||
"bee-loading": "^1.0.3",
|
||||
"bee-menus": "^1.0.7",
|
||||
"bee-popover": "^1.0.2",
|
||||
"bee-select": "^1.0.8",
|
||||
"bee-select": "^1.0.21",
|
||||
"classnames": "^2.2.5",
|
||||
"lodash.clonedeep": "^4.5.0",
|
||||
"object-path": "^0.11.3",
|
||||
|
@ -91,4 +91,4 @@
|
|||
"react-addons-test-utils": "^15.5.0",
|
||||
"react-dom": "^15.5.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,20 +23,29 @@ class FilterType extends Component {
|
|||
clearText = () => {
|
||||
this.setState({
|
||||
text: ""
|
||||
}, () => {
|
||||
this.changeText("");
|
||||
});
|
||||
let { onChange } = this.props;
|
||||
onChange && onChange("");
|
||||
}
|
||||
|
||||
//设置文本
|
||||
changeText = (eve) => {
|
||||
this.setState({
|
||||
text: eve
|
||||
});
|
||||
}
|
||||
//设置文本
|
||||
changeText = (val) => {
|
||||
//回车执行函数
|
||||
changeTextCall = (eve) => {
|
||||
let { onChange } = this.props;
|
||||
if (onChange) {
|
||||
onChange(val);
|
||||
this.setState({
|
||||
text: val
|
||||
});
|
||||
if (eve.keyCode == 13) {
|
||||
onChange(eve.target.value);
|
||||
}
|
||||
}
|
||||
//失去焦点后执行函数
|
||||
changeTextCallBlur = (val) => {
|
||||
let { onChange } = this.props;
|
||||
onChange && onChange(val);
|
||||
}
|
||||
//设置下拉值
|
||||
changeSelect = (val) => {
|
||||
let { onChange } = this.props;
|
||||
|
@ -84,6 +93,8 @@ class FilterType extends Component {
|
|||
value={this.state.text}
|
||||
className={className}
|
||||
onChange={this.changeText}
|
||||
onKeyDown={this.changeTextCall}
|
||||
onBlur={this.changeTextCallBlur}
|
||||
/>
|
||||
<FilterDropDown
|
||||
onSelectDropdown={onSelectDropdown}
|
||||
|
|
|
@ -241,6 +241,7 @@ class TableHeader extends Component {
|
|||
clsPrefix={clsPrefix}
|
||||
className={`${clsPrefix} filter-text`}
|
||||
onChange={debounce(filterDelay || 300, this.handlerFilterTextChange.bind(this, dataIndex))}
|
||||
// onChange={this.handlerFilterTextChange.bind(this, dataIndex)}
|
||||
onSelectDropdown={this.handlerFilterDropChange.bind(this, dataIndex)}
|
||||
filterDropdown={rows[1][index]['filterdropdown']}
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue