Skip to content
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

Input keyboard events don't work at Popover #129

Open
AndriiShupik opened this issue Jul 13, 2021 · 3 comments
Open

Input keyboard events don't work at Popover #129

AndriiShupik opened this issue Jul 13, 2021 · 3 comments

Comments

@AndriiShupik
Copy link

Impossible to type text inside input at Popover (was working at v5.1.0)

@AndriiShupik
Copy link
Author

                        <Popover
                            isOpen={this.state.showNotePopup === key}
                            onClickOutside={(e) => this.onHideNotePopup(e)}
                            position={["top", "right", "left"]}
                            disableReposition={false}
                            contentDestination={reactAttendance}
                            content={({
                                position,
                                childRect,
                                popoverRect,
                            }) => (
                                <ArrowContainer
                                    position={position}
                                    childRect={childRect}
                                    popoverRect={popoverRect}
                                    arrowColor={"#ffffff"}
                                    arrowSize={10}
                                >
                                    <div className='attendance-right_note'>
                                        <TextArea
                                            value={item.note || ''}
                                            onChange={(value) =>this.editNote(value, item)}
                                            type='text'
                                            placeholder={this.$t("Add a note")}
                                            maxHeight={60}
                                        />
                                    </div>
                                </ArrowContainer>
                            )}
                        >
                            <i
                                ref={this.refPopupNote}
                                className='icon icon-note'
                                onClick={(e) => this.showNote(e,key)}
                            ></i>
                        </Popover>``

@AndriiShupik
Copy link
Author

TextArea become focused but Vertical Line "|" pipe do not exist inside.

image

@iagobelo
Copy link

Any solution to that problem?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants