Hi
İ have a issue.
When 'try to add something to DialogComponent of tag, any button action doesn't work.
But i add to the content, it is work fine.
How can i solve this issue.
Thanks.
<DialogComponent
style={{ marginBottom: '220px',zIndex:-1 }}
isModal={true}
id='defaultdialog'
showCloseIcon={true}
animationSettings={this.animationSettings}
visible={this.state.tradeTeamSetVisible}
width={'600px'}
ref={(dialog) => (this.dialogInstance = dialog)}
header='Set Team and Trade'
buttons={this.buttonsForTeamTrade}
close={this.dialogCloseTeamTrade.bind(this)}
content={this.setTeamTrades.bind(this)}//but Button click work well here
>
//Button click doesnt work here
</DialogComponent>