Completed
Last Updated: 11 Mar 2024 07:36 by ADMIN
Release 2024.1.312
Martin Ivanov
Created on: 27 Feb 2024 12:31
Category: Callout
Type: Bug Report
0
Callout: CalloutPopupService Closed event is not invoked if you click on a button hosted inside the RadCallout control

The CalloutPopupService Closed event is not raised when you click on a button inside of the RadCallout element. The issue will occur on click of any other element that steals the mouse capture from the RadCallout.

To work this around, you can get the Popup element that hosts the RadCallout and use its Closed event.

 

CalloutPopupService.Show(callout, frameworkElement, settings);

var popup = callout.ParentOfType<Popup>();
popupt.Closed += CalloutHost_Closed;

 

0 comments