我正在尝试使用createTabViewItems() {
this.tabs = [];
const stackLayout = new StackLayout();
let customCmp= this.cfr.resolveComponentFactory(CustomComponent);
let componentRef = this.container.createComponent(customCmp);
stackLayout.addChild(componentRef);
const tbi = new TabViewItem();
tbi.view = stackLayout;
this.tabs.push(tbi);
let tabView = new TabView();
tabView .items = this.tabs;
}
在页面上显示一个简单的清单
到目前为止,我发现react-bootstrap-table2
允许在相应的Column标头中显示Select / TextBox。
我只想在表格顶部而不是在相应的列标题中显示“选择”。
react-bootstrap-table2