|
[index.js]
btnClick(args){
this.setState({
localData: [{OrderID: 10248, CustomerID: "HANAR",Freight: 65.83,ShipCity: "Rio de Janeiro"}]
})
}
render() {
return (<div className='control-pane'>
<div className='control-section'>
<button onClick={this.btnClick.bind(this)}>Refresh state</button>
<GridComponent dataSource={this.state.localData} allowPaging={true} pageSettings={{ pageCount: 5 }}>
<ColumnsDirective>
. . . .
</ColumnsDirective>
<Inject services={[Page]}/>
</GridComponent>
</div>
</div>);
}
|