Reputation: 3357
I should be able to enter text inside input field in the popup.
When the antd popup
is opened inside a dialog, I am able to see the popup by changin z-index
but I am not able to enter anything inside popup.
EnvironmentInfo
antd 3.13.6
React v16.4.1
System mac os 10.14.2
Browser reactjs v16.4.1
Upvotes: 0
Views: 1205
Reputation: 403
Can you change your Dialog to:
<Dialog
fullScreen
open={this.state.open}
onClose={this.handleClose}
TransitionComponent={Transition}
disableEnforceFocus={true}
>
This should fix the issue.
Upvotes: 2