To reproduce: - add a grid with some sample rows - apply TelerikMetro theme to the grid - select the rightmost column - you will notice that there is 1px extra space between the grid border and the column Workaround: - Open the TelerikMetro theme in Visual Style Builder. - Expand RadGridView up to GridTableElement. - In the elements window expand TableElement - Set the padding property to 0.
Apply a RoundRectShape with Radius 25 to the RootElement of a RadPanel and set panel's BackgroundShape property. Note that the image is not clipped with the correct 25 radius. Workaround: to avoid the issue through resetting the ApplyShapeToControl property when the panel is resized. void radPanel_SizeChanged(object sender, EventArgs e) { RadPanel panel = sender as RadPanel; if (panel != null) { panel.RootElement.ApplyShapeToControl = false; panel.RootElement.ApplyShapeToControl = true; } }
If you compare the G-mail-like labels in the HelpDesk sample application, you will notice that while in Q1 2010 they look good, in Q3 2010 SP1 there is an issue with the way they are painted. Most probably the reason is in the RoundRectShape.
FIX. Themes - message box appears when application is deployed
The issue appears when you change the DPI settings for the PC and try to create an application with RadDock and RadPageView.
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.
- It could have some doctors as resources with different working hours/days - Ability of the patients to add appointments for the available hours
If there is some accessibility software running (screen readers, UI automation/inspection tools) and you try to edit a value in a decimal column, an exception will be thrown.
FIX. Mnemonics are executed without the control being on focus or ALT key pressed.
FIX. Theme: RadMultiColumnComboBox arrow button theme is different than the other drop down controls (ControlDefault)
Description: When using RadPageView in strip view mode with Office2007Black theme the header and footer have a label containing the text of the current page. To reproduce: -Add a pageView -Add a page -Change the theme to Office2007Black Workaround: ((RadPageViewStripElement)radPageView1.ViewElement).Footer.Visibility = ElementVisibility.Collapsed; ((RadPageViewStripElement)radPageView1.ViewElement).Header.Visibility = ElementVisibility.Collapsed;
1. Create a new project with RadChartView. 2. Add a Cartesian chart with a large number of points (10000 for example). 3. Set animations for every point. 4. Run the project - it will crash.
1. Create a new project and add RadDropDownList. 2. Change the application theme to be Windows 8. 3. Dock the drop down list to bottom of your form. 4. Run the project and maximize the form.
Add iPhone style menu like the one available for ASP.Net http://demos.telerik.com/aspnet-ajax/menu/examples/appearance/iphonemenu/defaultcs.aspx#
Application button in TelerikMetro and TelerikMetroBlue themes cannot be easily customized.
Allow drag and drop among the data controls such as RadGridView, RadTreeView, RadListView, RadListControl
To reproduce: 1. Drag and drop RadMenu. Add RadMenuButtonItem 2. Set the TextImageRelation and you will see that is not apply. The TextImageRelation property of the button item does not set the TextImageRelation of the button element
To reproduce: - Associate a tree to the bread crumb - Set the control size to 0,0 - Auto size = true - Select a node from the tree -> the bread crumb size is not increased, thus it remains invisible.
RadOffice2007ScreenTipElement tip = new RadOffice2007ScreenTipElement(); tip.EnableCustomSize = false; //this enables custom size In order to enable custom size the setting should be tip.EnableCustomSize = true;. The flag is incorrect.