After ILMerge buttons on printpreview dialog are not painted. Run attached InfoCubeM.exe (merged InfoCube.exe), press radbutton, buttons appears as on attached capture. InfoCube.ilproj and ILMerge-cmd.txt also in attached zip
When the PaperSources collection contains an empty string the dialog enters in an endless loop.
A free configurable KANBAN-Board. - Add N columns. - Add tasks to column. - Move task by drag and drop between columns. - Task with header, image, link (or click event) - Task as expandable container
Workaround - set the Visible property of the needed pages to true
To reproduce: -use RadForm with WindowState=Maximized at design-time; -add RadPanel with Dock = Top; -after running the application minimize the form and maximize it again; as a result the form title bar is cut off. Workaround: set Margin of the FormElement and Top docked panel when maximizing: private void Form1_SizeChanged(object sender, EventArgs e) { RadForm form = sender as RadForm; if (form != null) { if (form.WindowState == FormWindowState.Maximized) { form.FormElement.Margin = new Padding(0, 8, 0, 0); (form.Controls[0] as RadPanel).PanelElement.Margin = new Padding(0, 20, 0, 0); } } }
RadControls should implement the MS Active Accessibility rules.
Telerik winforms demo application "bugtracker" issue: reproduction: 1. drag the "bugs" window to touch the upper middle docking guide icon and without releasing the mouse button drag it further Effect: please observe that the remainder of the "bugs window" will not be refreshed, you can draw with this window The same issue can be also observed in the demo hub: drag > Tabstrip properties demo application and also in the DragDropService demo application.
To reproduce: - Open the Breeze theme. - Hover the ScrollBar with the mouse - the background is changed and never restored.
Currently, if one wants to set the theme of his/her controls programmatically, he/she has to set a string value. However, the string value that has to be set is different from the class name of the theme component, so the user does not know what to set. A property that returns the ThemeName string should be implemented in each of the theme components.
FIX. RadMultiColunmComboBox editable area should look like RadDropDownList editable area
When user enter into a child record in a heiarchy RadGridView Jaws reads DBNull. When user go back, the proper field is read.
The screentip is not position correctly when the item is on the left part of the screen.
1. Run the Demo Application 2. Click the "Dock" item on the left list 3. Click "Programming" tile then lunch the example 4. Drag and drop the Tool Window 1 and/or Tool Window 2 to the document window 1 area to set Tool Window 1 and/or Tool Window 2 as tabbed document 5. Then you can only click and select Tool Window 1 and/or Tool Window 2, but you can't click and select document window 1 Resolution: In the Dock => Programming example is added code which prevent selection: private void radDock1_ActiveWindowChanging(object sender, DockWindowCancelEventArgs e) { e.Cancel = e.NewWindow is DocumentWindow; } We modified the example to log information when select different windows.
To reproduce: 1. Use the following code snippet: public class ViewModel:INotifyPropertyChanged { public ViewModel() { } private bool _isShown; public bool IsShown { get { return this._isShown; } set { this._isShown = value; OnPropertyChanged("IsShown"); } } public event PropertyChangedEventHandler PropertyChanged; protected void OnPropertyChanged(string propertyName) { PropertyChangedEventHandler handler = PropertyChanged; if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName)); } } 2. Add a MS Panel and a RadPanel to the form. 3. Add Panel.DataBindings at design time for its Visible property to the ViewModel.IsShown property. 4. When you run the application, the MS Panel is not visible. However, if you remove the RadPanel it is shown. Please refer to the attached sample video illustrtaing better the performed steps.
Presently we only have the white TelerikMetroTouch theme.
FIX. RadBreadCrumb's ThemeName drop down does not display TelerikMetroTheme, when the latter is added to the form. However, if you type in the theme name, it is correctly applied. Note: the same problem is noticed for VisualStudio2012Dark theme as well. Workaround: set the theme at run time by using the ThemeName property.
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;