render(){ 返回(
为了代表浏览器中的大量数据,
<DataGrid
height={this.state.height}
style={{ fontSize: '12px' }}
columns={this.state.columns}
data={this.state.data}
options={this.state.options}
/>
<Divider />
<Button
type="primary"
onClick={() => this.changeConfig('setHeight', 300)}
>
height : 300
</Button>
<Button
type="primary"
onClick={() => this.changeConfig('setHeight', 400)}
>
height : 400
</Button>
<Button
type="primary"
onClick={() => this.changeConfig('setHeight', 500)}
>
height : 500
</Button>
</Segment>
</Wrapper>
);
我想在该DataGrid标记内使用J-Query属性。 jQuery属性为$('。child')。resizable({handles:'se'}); 而DataGrid标签是该项目中的电子表格。