This is a migrated thread and some comments may be shown as answers.

Detect Popup focus loss to close it

2 Answers 531 Views
Wrappers for React
This is a migrated thread and some comments may be shown as answers.
Jean-Pierre
Top achievements
Rank 1
Jean-Pierre asked on 03 Jan 2019, 12:38 PM

I am working with a kendo react grid, and i need to implement to open a menu by right clicking on any cell.  By using onContextMenu on the cell render, I am able to open a popup:

cellRender(tdElement, cellProps) {
        const dataItem = cellProps.dataItem;
        const field = cellProps.field;
        const additionalProps = (cellProps.dataItem[this.editFieldName] && (cellProps.field === cellProps.dataItem[this.editFieldName])) ?
            {
                ref: (td) => {
                    const input = td && td.querySelector('input');
                    if (!input || (input === document.activeElement)) { return; }
                    if (input.type === 'checkbox') {
                        input.focus();
                    } else {
                        input.select();
                    }
                }
            } : {
                onClick: () => { this.enterEdit(dataItem, field); },
                onContextMenu: (e) => { e.preventDefault(); this.onContextMenu(e, dataItem, field); }
            };
        return React.cloneElement(tdElement, { ...tdElement.props, ...additionalProps }, tdElement.props.children);
    }

...

Is it possible for a Popup to detect that it has lost the focus, and then set show property to false ?

Best regards.

PS: Maybe there is a better solution to implement a context menu ?

 

 

2 Answers, 1 is accepted

Sort by
0
Stefan
Telerik team
answered on 04 Jan 2019, 08:42 AM
Hello, Jean-Pierre,

Thank you for the details.

Currently, a custom approach as to be used to detect when the Popup has lost focus as by defect the div elements are not focusable and do not fire the blur event.

One why will be to attach a global click handler and to check if the clicked element is the Popup(or anything inside of it). Then based on that to programmatically close the Popup:

https://stackblitz.com/edit/react-dyn1m1?file=app/main.js

We will also check if we can make the Popup focusable and provide an onBlur built-in event that will make this task easier.

Regards,
Stefan
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Jean-Pierre
Top achievements
Rank 1
answered on 04 Jan 2019, 02:23 PM
works perfectly, thanks :)
Tags
Wrappers for React
Asked by
Jean-Pierre
Top achievements
Rank 1
Answers by
Stefan
Telerik team
Jean-Pierre
Top achievements
Rank 1
Share this question
or