-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suggest: rightElement click #3422
Comments
Hello,
The behaviour is not the same between the two objects :
It would be nice to have an unified UX/UI behaviour between components which seem similar from the user. Thanks |
You can apply the CSS |
Hello. Thank you for your answer. I have tried : const inputProps: InputGroupProps = {
leftIcon: 'search',
rightElement:
<Button
icon='caret-down'
className={style({ pointerEvents: 'none'})}
minimal={true}
intent={Intent.NONE}
/>,
placeholder: 'Choose line...'
}; and also with <Icon icon:'caret-down' className={style({ pointerEvents: 'none'})}/> It does not work, the event is not passed through the Button/Icon |
This is an important UX issue. You click into the field on rightElement and it does not respond. You have to move mouse into the space to the left of rightElement to click and put focus into input field. How annoying is that! This is a serious UX issue. |
This should be classified a bug. You click on input field and it does not receive focus. How is this not a bug? |
Environment
Question
Hi,
I am uisng a Suggest component with a right icon. I passed a rightElement prop to the input in order to add an icon in the right side of it.
However, clicking in this icon, nothing happens. How can I easily avoid that the icon catches the click button letting the input handle that event (and achieve the same experience of clicking in the other parts of the input) ?
I could do it controlling manually when the popover is expanded or not but I would like to avoid that.
The text was updated successfully, but these errors were encountered: