I use SelectBox component with custom item render. When I click on the NumberBox component, it makes a selection. If I remove the format property of NumberBox, it works correctly. How can I use NumberBox component in SelectBox?
Code Example:
TypeScriptexport class Example extends React.Component<{}, {}> {
ref = React.createRef<NumberBoxRef>();
render() {
return (
<div style={{ width: 600 }}>
<SelectBox
displayExpr={'label'}
valueExpr={'value'}
dataSource={\[{ label: 'Apple', value: 1 }\]}
itemRender={(params: any) => {
return <Row justify={'space-between'}>
{params.label}
<div onClick={(e) => { e.stopPropagation(); this.ref.current?.instance().focus(); }} >
<NumberBox ref={this.ref} showClearButton={true} format={'#,##0.00'} />
</div>
</Row>
}}
/>
</div>
);
}
}