Declined
Last Updated: 04 Aug 2023 04:40 by ADMIN
ADMIN
Created by: Dimitar
Comments: 7
Category: UI Framework
Type: Feature Request
4
This theme is available in WPF suite. We have the Light and Dark variations as well. 
Declined
Last Updated: 14 Aug 2018 10:41 by ADMIN
I have a winforms controls product with specific license of 2017.1.221.40 and I need to know what themes are available for this specific version and how to implement it, since I need to know if I can apply the them "VisualStudio2012DarkTheme" and how do it.
Declined
Last Updated: 14 Aug 2018 10:44 by ADMIN
Poor support for custom DPI scaling in Windows 7 - Windows 10.
There no null checking, and there is dirty hacks:

CASE 1: RadPageViewElement
 public override void DpiScaleChanged(SizeF scaleFactor)
        {
            base.DpiScaleChanged(scaleFactor);

            if (this.Owner != null && this.Owner.Pages.Count > 1)
            {
                this.Owner.SuspendEvents();

                if (this.Owner.SelectedPage == this.Owner.Pages[0])
                {
                    this.Owner.SelectedPage = this.Owner.Pages[1]; // NO NULL CHECKING
                    this.Owner.SelectedPage = this.Owner.Pages[0]; // DIRTY HACK: users can have their own processing OnSelectedPage, which is unexpected here!
                }
                else
                {
                    RadPageViewPage page = this.Owner.SelectedPage;
                    this.Owner.SelectedPage = this.Owner.Pages[0];
                    this.Owner.SelectedPage = page;
                }

CASE 2:
 public partial class RadForm1 : Telerik.WinControls.UI.RadForm
    {
        public RadForm1()
        {
            InitializeComponent();
            radWizard1.Pages.Add(new WizardPage()); // when user has 100% Dpi, this code works normally. But if user has custom scale DPI (e.g. 101%), user received System.NullReferenceException: 'Object reference not set to an instance of an object.' (because because again there is no verification for ContentArea = null)...
        }
    }

Please improve the work with custom DPI scaling!
Declined
Last Updated: 06 Jul 2018 08:20 by ADMIN
I'd like to represent, update and delete WinForms Scheduler events in a Kendo MVC Web application and visa versa. Some kind of data converter would be appreciated.
Declined
Last Updated: 08 Jun 2018 10:33 by ADMIN
Created by: Matt
Comments: 1
Category: UI Framework
Type: Feature Request
0
Implement a facility to convert a RadDocument to a RadPrintDocument (or something that can be handed to a RadPrintPreview) to avoid having to load up a RadRichTextEditor just to print a code-generated document.
Declined
Last Updated: 12 Feb 2018 10:45 by ADMIN
Created by: David
Comments: 1
Category: UI Framework
Type: Feature Request
0
Do you have a version which can support Microsoft .NET Framework 2.0? I run a sample application TelerikUIforWinFormsDemoAppsHub\BugTracker asking for Microsoft .NET Framework 4.0.

We had some PC still running Microsoft .NET Framework 2.0.
Declined
Last Updated: 26 Jun 2018 07:48 by ADMIN
I have literally for weeks now, tried to find a single theme that works properly with High Dpi scaling, including the new material themes.  None of them work, I mean not even to the point that, it's just a few quirks.  I can't deploy applications, without extensive code to modify the way the controls look. 

My request, is take something like material (preferably with a professional color scheme), or telerik touch, make the need adjustments to make them HiDpi, and then EXTENSIVELY test it, to insure it works. 

Declined
Last Updated: 26 Oct 2017 11:02 by ADMIN
Created by: William
Comments: 1
Category: UI Framework
Type: Feature Request
0
Bitdefender moved a threat to quarantine. File name: c:\program files (x86)\progress\telerik ui for winforms r3 2017\examples\medicalapp\medicalappcs\bin\medicalappcs.exe. It is recommended that you run a System Scan to make sure your system is clean.
Declined
Last Updated: 05 Apr 2017 12:27 by ADMIN
Created by: Rajesh
Comments: 1
Category: UI Framework
Type: Feature Request
0
how to add like dislike button column for each row in radgrid
Declined
Last Updated: 10 Jan 2017 10:12 by ADMIN
Created by: Chuck
Comments: 1
Category: UI Framework
Type: Feature Request
0

			
Declined
Last Updated: 02 Dec 2016 11:57 by ADMIN
Created by: neil
Comments: 1
Category: UI Framework
Type: Feature Request
0
Add the ability to have multiple columns in a TreeView
Declined
Last Updated: 21 Nov 2016 07:11 by ADMIN
Created by: BlueStack
Comments: 2
Category: UI Framework
Type: Feature Request
1
Our customers are located in Russian and CIS. So, the most common language is Russian. Telerik WinForms controls doesn't provide official Russian localization. Yeah, we can translate it, but it's too hard to contact with translators and support them in translation questions. And, of course, it takes money resources. We'd rather pay more monay for Telerik WinForms UI with official Russian localization than we spend money to translators.

Thanks!
Declined
Last Updated: 12 Sep 2015 13:32 by ADMIN
Created by: Richard
Comments: 2
Category: UI Framework
Type: Feature Request
1

			
Declined
Last Updated: 21 Sep 2015 13:07 by ADMIN
Created by: Chandra
Comments: 2
Category: UI Framework
Type: Feature Request
0
add more functions in rad diagram like labels for links, conditional formatting of links and nodes like shape size, color, thickness etc also try to add some analysis alogs like sna like degree, betweenness, closeness shortest path  etc. also a facility to use png icons 2d and 3d for more better representations. 

Also try to add more chart layout like tree, organic, organizational, circular, and time line to represent sequence of events related to nodes.
Declined
Last Updated: 22 Jul 2015 13:39 by qakmak
Created by: qakmak
Comments: 9
Category: UI Framework
Type: Feature Request
3
Why the telerik more and more ugly now? Look at the DevExpress, very beautiful and it has so many skin for change.

I hope telerik must be paid great attention  for UI. win8 it's a good example. ugly! now you also too. especially the Demo. just like a ugly collections!
Declined
Last Updated: 08 Jul 2015 12:29 by ADMIN
Setup:
Had radchartview with showtrackball = false, and a form checkbox to enable disable the trackball

So startup showtrackball = false, the start appl, all ok, mouse over chart, all ok,   then use checkbox to set showtrackball=true, then mouse over chart all ok, then use checkbox to set showtrackball = false (again) then mouse over - and get this crash!

Exception

System.NullReferenceException was unhandled
  HResult=-2147467261
  Message=Object reference not set to an instance of an object.
  Source=Telerik.WinControls.ChartView
  StackTrace:
       at Telerik.WinControls.UI.ChartTrackballController.GetPointText(DataPoint point)
       at Telerik.WinControls.UI.ChartTrackballController.GetTrackballText(List`1 points)
       at Telerik.WinControls.UI.ChartTrackballController.MoveTrackball(PointF location)
       at Telerik.WinControls.UI.ChartTrackballController.OnMouseMove(MouseEventArgs e)
       at Telerik.WinControls.UI.ChartWrapper.WrapperCallOnMouseMove(MouseEventArgs e)
       at Telerik.WinControls.UI.RadChartElement.OnMouseMove(MouseEventArgs e)
       at Telerik.WinControls.RadElement.DoMouseMove(MouseEventArgs e)
       at Telerik.WinControls.ComponentInputBehavior.SelectElementOnMouseOver(MouseEventArgs e)
       at Telerik.WinControls.ComponentInputBehavior.OnMouseMove(MouseEventArgs e)
       at Telerik.WinControls.RadControl.OnMouseMove(MouseEventArgs e)
       at System.Windows.Forms.Control.WmMouseMove(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at Telerik.WinControls.RadControl.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
       at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.Run(Form mainForm)
       at Elo.Rpv.WinForms.Program.Main(String[] args) in z:\00 ELECTROLOGIC.RPV\30 SW\02 Git\Rail Profile Viewer\Rail Profile Viewer 1\Elo.Rpv\Elo.Rpv.WinForms\Program.cs:line 22
       at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()
  InnerException: 


Declined
Last Updated: 12 Mar 2015 11:04 by ADMIN
Created by: Dan
Comments: 1
Category: UI Framework
Type: Bug Report
0
see attached
Declined
Last Updated: 30 Dec 2014 18:44 by Vincent
Created by: Vincent
Comments: 2
Category: UI Framework
Type: Feature Request
0
- Image quality in PDF is very low.
- page 22 : \VS Projects\...  not found on my computer in "C:\Program Files (x86)\Telerik\". Precise root path.
- page 24 part 7 : MiscellaneousTheme. Seems this theme has been removed
- page 24 part 11: RadSplitButton wrong name : spSizeMode instead sbSizeMode
- Page 25 part 13: EventHandler "BorderStyleClick" unclear. should precise.

(I'll complete other pages after I read it ;p)
Declined
Last Updated: 26 Dec 2014 12:07 by ADMIN
The context menu does not provide which control has been clicked.
Workaround:

Point p;
Control currentControl;
 
void radContextMenu1_DropDownOpened(object sender, EventArgs e)
{
    p = ((RadContextMenu)sender).DropDown.Location;
    TraverseControls(this);
}
 
public void TraverseControls(Control ctrl)
{
    foreach (Control control in ctrl.Controls)
    {
        if (control == ctrl.GetChildAtPoint(ctrl.PointToClient(p)) && control.Controls.Count > 0)
        {
            currentControl = control;
            TraverseControls(control);
        }
        else if (control == ctrl.GetChildAtPoint(ctrl.PointToClient(p)))
        {
            currentControl = control;
        }
    }
}
Declined
Last Updated: 18 Sep 2014 14:58 by ADMIN
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.
1 2