RadControls are slow when using at design time in a form containing a lot of controls, split containers and table layout panels
To reproduce: 1. Drag and drop RadPageView on the form 2. Add 2-3 pages 3. Set the ViewType to Backstage 4. Open smart tag and press Delete key to edit the Item Area Width property. After pressing the key, the RadPageView is removed from form. The issue is observed in Visual Studio 2015 only.
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.
To Reproduce: 1. Install Q2 2015 (version 2015.2.623) of Telerik UI Winforms on PC with Visual Studio 2008 2. Start the VS2008 and create new VB Winforms project 3. Drag and drop from toolbox any control (RadButton or RadGridView). 4. Open smart tag and click Edit UI Elements 5. Message box with error is shown Workaround: If is possible use Visual Studio 2010 or higher version.
Workaround: manually resize the editor or drag it upwards
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.