Suppose my search is a custom search as follows: ``` handlechange=()=>{ if(node===undefined) console.log('undefined') console.log(node.table.props.data); }; render() { if(this.props.columns.length===0) return(<div></div>) return( <ToolkitProvider keyField="ID" data={this.props.data} columns={this.props.columns} search > { props => ( <div> <SearchBar {...props.searchProps} /> <hr/> <BootstrapTable {...props.baseProps} striped hover condensed noDataIndication="No Values Found" ref={ n => this.node = n } onTableChange={this.handlechange()}/> </div> ) } </ToolkitProvider> ) } ``` i get this.node as undefined.