Declined
Last Updated: 24 Jun 2015 12:19 by ADMIN
ADMIN
Stefan
Created on: 12 Feb 2014 14:36
Category: PageView
Type: Bug Report
0
FIX. RadPageView - when the user edit the page header and the editor loses the focus the Validating event is not fired.
To reproduce:
- Implement the example from this page http://www.telerik.com/help/winforms/pageview-how-to-editing-page-tabs.html.
- Set the page text to empty string and click on another page.


Workaround:
subscribe to the editor's element RadPropertyChanging event:
void element_RadPropertyChanging(object sender, RadPropertyChangingEventArgs args)
{
    if (args.Property == RadElement.ContainsFocusProperty)
    {
        if (!(bool)args.NewValue)
        {
            args.Cancel = true;
        }
    }
}
1 comment
ADMIN
Ralitsa
Posted on: 24 Jun 2015 12:19
The issue is duplicated with another feedback item and both are merged into FIX. RadPageView - Validation events are not fired when editing the tabs
Here is the link: http://feedback.telerik.com/Project/154/Feedback/Details/131708-fix-radpageview-validation-events-are-not-fired-when-editing-the-tabs