Completed
Last Updated: 17 Jul 2012 07:27 by ADMIN
FIX. QSF - GridView > Rows > Rows Drag & Drop example - dragging multiple rows does now work
Completed
Last Updated: 10 Oct 2014 15:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
3
GridImageCellElement should be able to hide the image that it shows. This should be possible thanks to a property that determines the visibility of the image. Probably, this property should be exposed at the base class LightVisualElement.

Resolution: 
Add new properties DrawImage and DrawBackgroundImage. You can use the following code snippet: 
void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e)
{
    if (e.CellElement is GridImageCellElement)
    {
        e.CellElement.DrawImage = false;
    }
}
Completed
Last Updated: 13 Jul 2012 06:08 by ADMIN
1. Create a new project and add a button.
2. Set the following text to the button:
<html><p><strong>A header in bold font</strong></p><p>and this text is missing!!</p></html>
3. Run the project.
Completed
Last Updated: 13 Jul 2012 03:22 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: UI Framework
Type: Bug Report
1
1. Create a new project and add a Form.
2. At design time add several different Rad controls.
3. Build the application.
4. Change the DPI settings of your operating system to 125% (make sure to use XP style scaling).
5. Run the application.


The issue appears when using XP style scaling on Vista or Windows 7 operating systems. You can work around it by disabling this option. To do this, follow these steps:

1. Right click on the desktop and choose the personalize option.
2. Click the Display option located at the left bottom corner of the form.
3. Click the Set custom text size (DPI) option located at the left side of the form.
4. Uncheck the Use Windows XP style DPI scaling.
5. You should reboot your PC in order to apply changes.

There is another solution that works in most of the cases. You should remove the following lines from your form Designer.cs file:

this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
Completed
Last Updated: 11 Oct 2021 07:21 by ADMIN
Release Q2 2012 SP1
1. Create a new project and add RadForm.
2. Open the form at design time.
3. Set its ThemeName to ControlDefault.
4. Choose the Reset option from the ThemeName drop down.
5. Repeat this operation several times and watch how form size changes.
Completed
Last Updated: 22 Jun 2012 05:29 by ADMIN
Steps to reproduce:
1. Place a RadButton on a form
2. In the load event of the form set the text of the button to some list. For example:
<html><ul><li>list item 1</li><li>list item 2</li><li>list item 3</li></ul></html>
3. Run the project and you'll see the last item is missing.
Completed
Last Updated: 22 Jun 2012 05:00 by ADMIN
1. Create a new form and add command bar in it.
2. Add a split button with one item 
3. On item click add code to show RadForm.
4. Run the project and click the item to show the form.
Completed
Last Updated: 27 Oct 2015 12:38 by ADMIN
ApplicationButton and QuickStartToolbar layout do not look good when user changed the theme in runtime.
Issue can be reproduced with Office2010Silver, Deser, HighContrastBlack and Windows7 themes.

Workaround:
 call recursively the UpdateLayout method for all RadControls in the form:

ThemeResolutionService.ApplicationThemeName = item.Text;
    this.RefreshAll();
    m_strThemeName = item.Text;
    SaveThemeName();
...
}
 
private void RefreshAll()
{
    foreach(Control control in this.Controls)
    {
        RefreshAllControls(control);
    }
}
 
void RefreshAllControls(Control ctrl)
{
    foreach (Control control in ctrl.Controls)
    {
        RadControl radControl = control as RadControl;
        if (radControl != null)
        {
            radControl.RootElement.InvalidateMeasure(true);
            radControl.RootElement.UpdateLayout();                   
        }
        RefreshAllControls(control);
    }
}
Completed
Last Updated: 28 Jun 2016 11:12 by ADMIN
RadPageView in BackStageMode loses its content when user changes the theme from the Listbox, placed into BackStageView.
For example, user choose Office2010Black or Office2007Black or HighContrast and BackStage view appears empty

Workaround: all recursively the UpdateLayout method for all RadControls in the form

private void RefreshAll()
{
    foreach(Control control in this.Controls)
    {
        RefreshAllControls(control);
    }
}
 
void RefreshAllControls(Control ctrl)
{
    foreach (Control control in ctrl.Controls)
    {
        RadControl radControl = control as RadControl;
        if (radControl != null)
        {
            radControl.RootElement.InvalidateMeasure(true);
            radControl.RootElement.UpdateLayout();                   
        }
        RefreshAllControls(control);
    }
}
Completed
Last Updated: 15 Mar 2019 17:40 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: UI Framework
Type: Bug Report
2
RadOffice2007ScreenTipElement does not have all themes (except the ControlDefault Theme)
Completed
Last Updated: 19 Jun 2012 03:35 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: UI Framework
Type: Bug Report
1
1. Create a new project and setup a splash screen.
2. While the splash screen loads create a screen tip.
3. Run the project
Completed
Last Updated: 18 Jun 2012 04:06 by ADMIN
1. Create a new project and open a form at design time.
2. Add RadTreeView. 
3. Add Office2007Black theme component.
4. Set the ThemeName property of RadTreeView to Office2007Black.
Completed
Last Updated: 18 Jun 2012 02:59 by ADMIN
1. Run a project containing RadRibbonBar with Office2010Blue theme
2. Compare with Q1 2012 SP1
Completed
Last Updated: 18 Jun 2012 02:36 by ADMIN
1. Open a RadForm ad design time.
2. Drop a theme component.
3. Open the RadForm.ThemeName drop down list and you will see only Reset and ControlDefault options.
Completed
Last Updated: 13 Feb 2014 09:05 by ADMIN
1. Create a new project and open a form in design mode.
2. Drop some controls.
3. Add RadThemeManager and add some theme.
4. Set the ThemeName property of some control to the newly added theme.
5. Remove the RadThemeManager component.
6. The theme remains applied.
Completed
Last Updated: 14 Jun 2012 06:20 by ADMIN
1. Create a new project with RadCarousel.
2. Add some items.
3. On item click change the current theme.
4. Run the project and click an item.
Completed
Last Updated: 18 Jul 2012 06:37 by Jesse Dyck
1. Create a new project and add a RadLabel.
2. When handling the Form.Load event set its Enabled state first to false and then to true.
3. Run the project and you will see that the label is still disabled.
Completed
Last Updated: 13 Jun 2012 08:43 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: UI Framework
Type: Bug Report
0
1. Create a new project and add RadThemeManager
2. Add several themes located as resources
3. Run the project and only a few of the themes will apply
Completed
Last Updated: 25 Apr 2012 09:41 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: UI Framework
Type: Bug Report
1
FIX. RadGroupBox - memory leak when the group box Dock = Fill and Office2010Black theme is applied
Work around: this.radGroupBox1.Behavior.BitmapRepository.DisableBitmapCache = true;
RadDock:
Add a dock with two tool windows in a UserControl.
In the toolwindows add grid and a tree.
Apply Office2010Black theme to RadDock.
Place the control on a form, dock it and run the app.
Constantly resize the form and observe the memory used.
Work around: radDock1.Behavior.BitmapRepository.DisableBitmapCache = true;
Completed
Last Updated: 23 Apr 2012 13:09 by Jesse Dyck
The settings from the dialog opened by the Print button on the RadPrintPreviewDialog are not taken into consideration.