As workaround please, rename the controls with Find & Replace from VS Editor.
To reproducce: - Try to search with the following code: SearchResult searchResult = this.radPdfViewer1.Document.TextSearch.Find("domain model"); if (searchResult.Result != null) { this.radPdfViewer1.Select(searchResult); } Workaround: - Use reflection: PropertyInfo property = typeof(Telerik.Windows.Documents.Fixed.Model.RadFixedDocument).GetProperty("TextSearch", BindingFlags.Instance | BindingFlags.NonPublic); Type propType = property.PropertyType; MethodInfo findMethod = propType.GetMethod("Find", BindingFlags.Instance | BindingFlags.Public); SearchResult searchResult = (SearchResult)findMethod.Invoke(property.GetValue(this.radPdfViewer1.Document, null), new object[] { "EditorRequired", TextSearchOptions.Default }); if (searchResult.Result != null) { this.radPdfViewer1.Select(searchResult); }
Create a Telerik.Analytics.dll assembly which will reference the EQATEC.Analytics instead of direct reference the EQATEC in Telerik.WinControls.dll. This should avoid the warnings in the installator programs.
Users should be able to use the scrollbars of the container controls at design-time.
CaptionTextFont property does not work. It should set the font of the OutLookStyle's caption and the font of the groups' headers.
Html-like parser crash when process <html><a href="mailto:<a href=</a></html> text
The button indicating the RadDropDown draws just a think border on the left-side instead of drawing a thin four-sided border around the arrow.
- the initial object property value is not displayed - the color change is not always reflected, even though the object implements INotifyPropertyChanged Adding the binding in code works correctly.
FIX. RadPageView the isContentVisible property should work in all modes. RESOLUTION: This property should work only in ExplorerBar mode by design.
Steps to reproduce: 1. Paste image in the editor 2. Press enter (the image is pasted again everytime Enter is pressed) This is not issue in the control. It is cased by the test application. The focus remains on the paste button and for this reason the image is pasted when enter is pressed.
FIX. RadPageView - newly added page should be automatically selected in the properties window in design time Comment: When the above is implemented and a new page is added the following happens: 1. The RadPageView smart tag menu is closed 2. The new page is selected (the new page is a different component) 3. The smart tag menu of the new page is opened. This actually breaks the user experince instead of making it better.
The VSX toolbox configurator fails to open after installing RadControls for WinForms Q3 2010.
In the VSB set the CommandBarTextBoxElement MinSize property to a value greater than 299 and when you close the Elements property grid you will get an unhadled exception.
IMPROVE. RadShortcut - having displayed two forms both using the same shortcut for some action, the shortcut is applied to the first opened form instead to the one on focus.
CAB Enabling Kit - there is no way to show again smartpart that is already closed into RadDockWorkSpace. Workaround: protected override void OnDockWindowClosing(DockWindowCancelEventArgs e) { if (!notifications[Suspend_Close] && e.NewWindow.Controls.Count > 0) { this.composer.SetActiveSmartPart(null); WorkspaceCancelEventArgs args = new WorkspaceCancelEventArgs(e.NewWindow.Controls[0]); OnSmartPartClosing(args); e.Cancel = args.Cancel; e.NewWindow.CloseAction = DockWindowCloseAction.Hide; } base.OnDockWindowClosing(e); } protected virtual void OnActivate(Control smartPart) { notifications[Suspend_Activated] = true; DockWindow dockWindow = GetSmartPart(smartPart); if (dockWindow != null && this.ActiveWindow != dockWindow) { dockWindow.Show(); this.ActivateWindow(dockWindow); } notifications[Suspend_Activated] = false; }
Image into LightVisualElement is not thread safe and this may leads to exceptions if you access it from several threads. Steps to reproduce: 1.Create form that use theme with images. 2.Open this form several times. 3. Move mouse fast over them until exception occur.
Add the ability to add custom items to the RadPropertyGrid items collection.
Application button is overlapping the first tab when the theme is "Office2007Black".