To reproduce: Create a RadForm and add a RadButton. Open the Element Hierarachy Editor and set the ShowBorder of the RadButtonElement to false. Another way is to set the ShowBorder property through the Properties section in Visual Studio. Save the form, close it and reopen it. You will see that the border is shown and the property is set to true. Workaround: Set the value at runtime: this.radButton1.ButtonElement.ShowBorder = false;
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.
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); }
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.
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.
1.Drag a RadGridView to a form 2.Click Dock in parent from its SmartTag menu 3.Now change the Dock to None from the Properties window 4.Open again the smart tag and you will see that the link's text is "Undock in parent container" but the control is not docked. The same issue occurs with all controls that have "Dock in parent container" action link.
Application button is overlapping the first tab when the theme is "Office2007Black".
FIX.Radbutton -throws exception In design time when add image in ICO format c
1. Create a project with RadTextBox 2. Compile the project. 3. Highlight an existing multiline RadTextBox 4. Double Click multiline property (sets to false and control reduces to 1 line correctly) 5. Double Click multiline property again (control correctly returned to previous multiline size) 6. Compile - Fails with above error
One should be able to persist to a file all changes made when using the element hierarchy editor at design time.
Use the attached application and open its form at design time. Try to change something and to save the changes. Exception will occur.
Html-like parser crash when process <html><a href="mailto:<a href=</a></html> text
The LabelFormat property of the RadChartView axes does not take effect
1. Create a new project with RadChartView. 2. Add some data in the chart. 3. Add the following code: new Telerik.WinControls.Themes.DesertTheme(); ThemeResolutionService.ApplicationThemeName = "Desert"; 4. Run the project.
- 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.
It will be nice if one can add his custom sub menu items at design-time through the 'Add new item' menu. This was supported in the past, but the support was removed together with the introduced design-time optimizations.
Currently the sgen tool raises an exception when executing it on RadControls and RadControls.UI. There is also an XmlSerialization exception when loading the application.