We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tinper-bee
2.1.5
react
chrome 76.0.3809.87(正式版本) (64 位)
表格设置 showHeader:{false},同时设置 可以多选(默认); 在多选框后面出现空白padding;
代码: <Grid ref={el => (this.grid = el)} rowKey={(r, i) => i} //生成行的key columns={this.mainColumn} showHeader={false} data={queryObj.list} showFilterMenu={false} //是否显示行过滤菜单 filterable={filterable} //是否开启过滤数据功能 getSelectedDataFunc={this.getSelectedDataFunc} dragborder={true} onFilterChange={_this.onFilterChange} // 触发过滤输入操作以及下拉条件的回调 onFilterClear={_this.onFilterClear} //清除过滤条件的回调函数,回调参数为清空的字段 afterRowFilter={_this.afterRowFilter} //控制栏位的显示/隐藏 sort={sortObj} //排序属性设置 rowClassName={(record, index, indent) => { return selectIndex === index ? "selected" : ""; }} paginationObj={paginationObj} />
正常显示表格,不需要多余的padding;
金融
The text was updated successfully, but these errors were encountered:
发了新包 bee-complex-grid@2.0.24
Sorry, something went wrong.
No branches or pull requests
环境及版本信息
tinper-bee
版本号:2.1.5
react
的版本号:chrome 76.0.3809.87(正式版本) (64 位)
描述这个问题:
表格设置 showHeader:{false},同时设置 可以多选(默认); 在多选框后面出现空白padding;
代码
代码:
<Grid
ref={el => (this.grid = el)}
rowKey={(r, i) => i} //生成行的key
columns={this.mainColumn}
showHeader={false}
data={queryObj.list}
showFilterMenu={false} //是否显示行过滤菜单
filterable={filterable} //是否开启过滤数据功能
getSelectedDataFunc={this.getSelectedDataFunc}
dragborder={true}
onFilterChange={_this.onFilterChange} // 触发过滤输入操作以及下拉条件的回调
onFilterClear={_this.onFilterClear} //清除过滤条件的回调函数,回调参数为清空的字段
afterRowFilter={_this.afterRowFilter} //控制栏位的显示/隐藏
sort={sortObj} //排序属性设置
rowClassName={(record, index, indent) => {
return selectIndex === index ? "selected" : "";
}}
paginationObj={paginationObj}
/>
期望的行为:
正常显示表格,不需要多余的padding;
项目
金融
The text was updated successfully, but these errors were encountered: