Declined
Last Updated: 16 Feb 2024 20:32 by ADMIN
Created by: Kaan
Comments: 2
Category: UI for WinForms
Type: Feature Request
0

Hi,

I want to hide some columns of the table I received from Excel on RadGridView.

Declined
Last Updated: 16 Feb 2024 20:28 by ADMIN
The filter UI controls in ASP.NET Core and MVC are really nice, see filter. Can you include the same controls and UI be included in Winforms and WPF?
Declined
Last Updated: 16 Feb 2024 20:26 by ADMIN
Created by: Mario
Comments: 4
Category: UI for WinForms
Type: Feature Request
0

Hi everybody

 

I m try use the class CustomDragandDrop on radtreeview but i have a issue, 

if i use the next example, i dont have any problem:

      

   protected void BindRadTreeView()
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("Id", typeof(string));
            dt.Columns.Add("Title", typeof(string));
            dt.Columns.Add("ParentId", typeof(string));

            string parentId = string.Empty;
            string childId = string.Empty;
            for (int i = 0; i < 2; i++)
            {
                parentId = Guid.NewGuid().ToString();
                dt.Rows.Add(parentId, "Node" + i, null);
                for (int j = 0; j < 5; j++)
                {
                    childId = Guid.NewGuid().ToString();
                    dt.Rows.Add(childId, "SubNode" + i + "." + j, parentId);
                }
            }

            this.radTreeView1.ChildMember = "Id";
            this.radTreeView1.ParentMember = "ParentId";
            this.radTreeView1.DisplayMember = "Title";
            this.radTreeView1.DataSource = dt;


        }

 

i can drag and drop correctly

 

but the problem is when i binding the Radtreeview

 

                       

    protected void llenatreeview1() {

            dtTablas = dat.consultaBD();

            DataTable dt = new DataTable();
            dtCopi.Columns.Add("Id", typeof(string));
            dtCopi.Columns.Add("Title", typeof(string));
            dtCopi.Columns.Add("ParentId", typeof(string));

            string parentId = string.Empty;
            string Id = string.Empty;
            string title = string.Empty;
            foreach (DataRow row in dtTablas.Rows)
            {
                parentId = row["ParentId"].ToString();     

                Id = row["Id"].ToString();
                title = row["Title"].ToString();

                if (parentId == "")
                    dt.Rows.Add(Id, title, null);
                else
                    dt.Rows.Add(Id, title, parentId);
            }

            radTreeView2.ChildMember = "Id";
            radTreeView2.ParentMember = "ParentId";
            radTreeView2.DisplayMember = "Title";
            radTreeView2.DataSource = dt;
        }

first is freeze and then appears the error.

when i drag and drop appears then next error:

System.StackOverflowException

 

what am I doing wrong please your help. thanks
Declined
Last Updated: 16 Feb 2024 20:24 by ADMIN
Created by: Ian
Comments: 2
Category: UI for WinForms
Type: Feature Request
0

GridView has a default text alignment for new columns as 'MiddleCenter'.

Default alignment for new GridViewDataRowInfo is 'left'.

Please can these be the same ?

Declined
Last Updated: 15 Sep 2023 10:58 by ADMIN
Created by: Peter
Comments: 1
Category: UI for WinForms
Type: Feature Request
0

Dear,

I wonder if it is possible to consult the release history by product & control & version, next to the (already existing) release history by product & version & control?

This feature has benifits:

  • see how a given control evolves in time
  • quickly find if a bug/feature has been implemented by control

This request can be applied for all your products.

Kind regards,

Peter

Declined
Last Updated: 15 Sep 2023 10:55 by ADMIN
Created by: kieran
Comments: 1
Category: UI for WinForms
Type: Feature Request
2

Hi guys,

              It would be great to be able to set the day start/finish times in your Scheduler.

Your Scheduler control is fantastic, but I am building a Scheduler for a company that operates over 24hrs and the shift hours are

6am - 6pm

6pm - 6am

both shifts are classed as being the same day even though the nightshift crosses over to the next day.

 

I would like to be able to adjust the 24hr period that defines a day so that in month view the appointment will not carry over to the next shift.

and in day view, the schedule will start at 6am and go through to 6am.

If you could implement this, your scheduler control would be even more powerful and awesome.

Thanks!

Declined
Last Updated: 15 Sep 2023 10:54 by ADMIN
Created by: Mark
Comments: 3
Category: UI for WinForms
Type: Feature Request
0
Have the ability to embed the colour picker in our own forms, with onChange event
Declined
Last Updated: 04 Aug 2023 04:40 by ADMIN
Created by: Rajesh
Comments: 2
Category: UI for WinForms
Type: Feature Request
3

Hi,

We are using Telerik UI WinForms in our project. Current built-in themes are not suitable for our project requirements. We need Visual Studio 2019 Theme for UI WinForms.

As mentioned in the Telerik blog, the latest R3 2019 release of Telerik UI for WPF and Telerik UI for Silverlight is having Visual Studio 2019 Theme.

When can we expect Visual Studio 2019 Theme for UI WinForms? 

Declined
Last Updated: 27 Jun 2023 12:47 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 3
Category: UI for WinForms
Type: Feature Request
4
http://demos.telerik.com/aspnet-ajax/treelist/examples/overview/defaultcs.aspx

Declined
Last Updated: 09 Feb 2023 14:30 by ADMIN
Created by: Elliot
Comments: 1
Category: UI for WinForms
Type: Feature Request
0

Background: With many people having moved to working remotely, collaboration is a much larger part of any enterprise applications. As such, it would be highly beneficial to add real time collaboration capabilities to editor controls, more specifically the RadRichTextEditor control. It would work similarly to how MS Word works when more than one user is editing a document at the same time.

Scenario: Assume you have and WinForms application where there is a form that contains a RadRichTextEditor. The content for this control is populated from a centralized database. This content is editable by users of the application. Lets say that you have two users (User A and User B) editing this content at the same time. Currently, User A cannot see what User B is doing in real-time, and vice-versa. Each time one of the users saves the content, it will overwrite any changes made by the other user.

Desired outcome: If the users in the above scenario are using MS Word, each user would see that someone else is currently editing the document and the other user's changes would be displayed in real-time. This same outcome should be made more readily available with the Telerik editors, primarily the RadRichTextEditor, so that when two users are editing the same content, they would see each others' changes in real-time.

I know this is possible using SignalR and a bit of code, but I think it would be beneficial for the RadRichTextEditor to have better "out of the box" support for this feature.

I am aware of a web-based control that has this feature. Specifically, the CKEditor (https://ckeditor.com/) control has the features I am requesting. However, I am looking at WinForms as opposed to web.

Declined
Last Updated: 03 Aug 2022 08:08 by ADMIN

The version of Telerik products is requested as information where submitting a support ticket. In case one forgot the version currently installed, there is no way to find it (may be I am the only one who don't know). Usually most software provide such information in the "About" box. I found it difficult and not very useful that the "About" menu of Telerik connect to the Progress Home Page instead of displaying some useful information about the current installation (user name, version, installed components, license status, etc....). There are already many other actions (request support, online documentation, etc...) that connect to the web site. The "About" box should just be displayed within VS and provide information on the installation. Or at least you link it to the Progress Control Panel and adding a page for information I mentioned and more that user may need to know when needed.

Below is an example from VS.

Declined
Last Updated: 12 Apr 2022 12:49 by ADMIN
Created by: George
Comments: 1
Category: UI for WinForms
Type: Feature Request
1
Add the ability to add a richTextBox cell type to the RadGridView and have the ability to link it to a data source and to a RichTextEditorRibbonBar.
Declined
Last Updated: 16 Mar 2022 17:19 by ADMIN
Created by: 智超
Comments: 3
Category: UI for WinForms
Type: Feature Request
1

System.Reflection.TargetInvocationException:“Exception has been thrown by the target of an invocation.”

XamlParseException: “类型“Telerik.WinForms.Documents.Model.RadDocument”不具有内容属性。指定要设置的属性的名称,或者在该类型上添加 ContentPropertyAttribute 或 TypeConverterAttribute。”,行号为“5”,行位置为“4”。

Declined
Last Updated: 09 Sep 2021 08:58 by ADMIN
Created by: Haim
Comments: 2
Category: UI for WinForms
Type: Feature Request
2
   
Declined
Last Updated: 02 Dec 2020 14:33 by ADMIN
Created by: chaoyuan
Comments: 1
Category: UI for WinForms
Type: Feature Request
0

Hi Dess,

No problem. Fully understood.

Please find the new questions attached below and kindly get back to the customer Mr Huang (conext.vincent@gmail.com).

Thanks,

Peter

------------------------

Hello, Peter,

I would kindly ask you to provide any information in the support ticket as It is the appropriate way for providing assistance by the WinForms support engineers.

Thank you for your understanding

 

 

footerLogo

 

From: Peter Qu <Youpeng.Qu@progress.com>
Sent: Thursday, April 23, 2020 6:53 AM
To: Desislava Yordanova <Desislava.Yordanova@progress.com>
Cc: 'Peggy Chen' <peggychen@accesssoft.com.tw>
Subject: FW: [Accesssoft] Telerik support

 

Hi Dess,

 

Hope you are well.

 

Regarding the Support Ticket 1462221 (conext.vincent@gmail.com) please find error code attached and issue description as below.

 

Many thanks,

 

Peter Qu

 

Inside Sales Representative, APJ

 

Address:        120 Spencer Street | Melbourne, VIC, 3000 | Australia

Phone:           +61 413 012 003 | +86 1350 1330 973

WeChat:        Progress Telerik

Website:        www.telerik.com

Language:      English | Mandarin Chinese

 

 

blazor

 

From: Peggy Chen <peggychen@accesssoft.com.tw>
Sent: Thursday, 23 April 2020 13:46
To: Peter Qu <Youpeng.Qu@progress.com>
Subject: RE: [Accesssoft] Telerik support

 

客戶現又補充:每次升級一個版次就會出現嚴重問題,要如何排解.

描述: 一張含有 螢幕擷取畫面 的圖片  自動產生的描述描述: 一張含有 螢幕擷取畫面, 電腦, 監視器, 膝上型電腦 的圖片  自動產生的描述

 

描述: 一張含有 螢幕擷取畫面 的圖片  自動產生的描述

 

 

From: Peter Qu [mailto:Youpeng.Qu@progress.com]
Sent: Thursday, April 23, 2020 11:53 AM
To: Desislava Yordanova
Cc: 'Peggy Chen'
Subject: FW: [Accesssoft] Telerik support

 

Hi Dess,

 

Hope you are well.

 

Regarding the Support Ticket 1462221 (conext.vincent@gmail.com) please find error code attached and issue description as below.

 

Many thanks,

 

Peter Qu

 

Inside Sales Representative, APJ

 

Address:        120 Spencer Street | Melbourne, VIC, 3000 | Australia

Phone:           +61 413 012 003 | +86 1350 1330 973

WeChat:        Progress Telerik

Website:        www.telerik.com

Language:      English | Mandarin Chinese

 

 

blazor

 

From: Peggy Chen <peggychen@accesssoft.com.tw>
Sent: Thursday, 23 April 2020 13:46
To: Peter Qu <Youpeng.Qu@progress.com>
Subject: RE: [Accesssoft] Telerik support

 

conext.vincent@gmail.com

 

From: Peter Qu [mailto:Youpeng.Qu@progress.com]
Sent: Thursday, April 23, 2020 11:43 AM
To: Peggy Chen
Subject: RE: [Accesssoft] Telerik support

 

Hi Peggy,

 

It sounds a bit too complicated for the pre sales engineer. Can you please kindly let me know the license holder email and I will issue a support ticket on his Telerik account so that the developing team can get involved.

 

Thanks,

 

Peter Qu

 

Inside Sales Representative, APJ

 

Address:        120 Spencer Street | Melbourne, VIC, 3000 | Australia

Phone:           +61 413 012 003 | +86 1350 1330 973

WeChat:        Progress Telerik

Website:        www.telerik.com

Language:      English | Mandarin Chinese

 

 

blazor

 

From: Peggy Chen <peggychen@accesssoft.com.tw>
Sent: Thursday, 23 April 2020 13:40
To: Peter Qu <Youpeng.Qu@progress.com>
Subject: [Accesssoft] Telerik support
Importance: High

 

Hi Peter,

我們在跟一個客戶討論續約問題,因為如果不續約,當下的版本是否可以一直沿用,因為這套軟體升級不會刪除舊檔案,導致很多問題出來。

 

因為客戶編輯好專案,也進行發行動作,但是安裝到電腦會發生錯誤,請問要在其他台電腦執行客戶的安裝該如何執行.

請回復技術問題.


描述: 一張含有 螢幕擷取畫面 的圖片  自動產生的描述

軟體下進行模擬可以正常運行.

 

描述: 一張含有 螢幕擷取畫面 的圖片  自動產生的描述

執行發行後的安裝檔

描述: 一張含有 螢幕擷取畫面 的圖片  自動產生的描述

無法安裝.

 

附件有錯誤檔案.

 

Peggy

 

conext.vincent@gmail.com

 

From: Peter Qu [mailto:Youpeng.Qu@progress.com]
Sent: Thursday, April 23, 2020 11:43 AM
To: Peggy Chen
Subject: RE: [Accesssoft] Telerik support

 

Hi Peggy,

 

It sounds a bit too complicated for the pre sales engineer. Can you please kindly let me know the license holder email and I will issue a support ticket on his Telerik account so that the developing team can get involved.

 

Thanks,

 

Peter Qu

 

Inside Sales Representative, APJ

 

Address:        120 Spencer Street | Melbourne, VIC, 3000 | Australia

Phone:           +61 413 012 003 | +86 1350 1330 973

WeChat:        Progress Telerik

Website:        www.telerik.com

Language:      English | Mandarin Chinese

 

 

blazor

 

From: Peggy Chen <peggychen@accesssoft.com.tw>
Sent: Thursday, 23 April 2020 13:40
To: Peter Qu <Youpeng.Qu@progress.com>
Subject: [Accesssoft] Telerik support
Importance: High

 

Hi Peter,

我們在跟一個客戶討論續約問題,因為如果不續約,當下的版本是否可以一直沿用,因為這套軟體升級不會刪除舊檔案,導致很多問題出來。

 

因為客戶編輯好專案,也進行發行動作,但是安裝到電腦會發生錯誤,請問要在其他台電腦執行客戶的安裝該如何執行.

請回復技術問題.


描述: 一張含有 螢幕擷取畫面 的圖片  自動產生的描述

軟體下進行模擬可以正常運行.

 

描述: 一張含有 螢幕擷取畫面 的圖片  自動產生的描述

執行發行後的安裝檔

描述: 一張含有 螢幕擷取畫面 的圖片  自動產生的描述

無法安裝.

 

附件有錯誤檔案.

 

Peggy

 

Declined
Last Updated: 16 Jul 2020 07:24 by ADMIN
Created by: chaoyuan
Comments: 1
Category: UI for WinForms
Type: Feature Request
0
Declined
Last Updated: 26 Jun 2020 15:26 by Al
I would love to have the radbuttontextbox available as a grid column
Declined
Last Updated: 20 Mar 2020 11:37 by ADMIN
Created by: Yemo
Comments: 1
Category: UI for WinForms
Type: Feature Request
0

Hello,

 Is there any way to style the MapCluster Grouped Icon/image in RadMap Winforms? Currently it displays a circle with the total number of grouped items. The background Fill colour of the circle is too dark to enable easy viewing of the number in the circle.

It would be good to depending on the grouped item type, to specify an icon to be used in place of the circle also providing an option to put a label underneath to display (eg "34 Houses")

Specifying different clustered Icons based on the "element type" would provide a clearer summary of the different types of items in a specific area.

 Thanks 

Declined
Last Updated: 04 Dec 2019 14:58 by ADMIN
Created by: luai
Comments: 4
Category: UI for WinForms
Type: Feature Request
0

I am working on a Windows Forms Application that load and print PDF document then unload that document  and load new one, but when i call unloadDocument() no new document was loaded :

                   RadPdfViewer rViewer = new RadPdfViewer();
                    rViewer.DocumentLoaded += RViewer_DocumentLoaded;
                    rViewer.LoadDocument(Filepath);
                    rViewer.LoadElementTree();
                    Application.DoEvents();
                    rViewer.PdfViewerElement.StopWaiting();
                    if (rViewer.IsLoaded)
                    { rViewer.UnloadDocument(); }

after unloadde the document i cannot load new PDF doccument?

Declined
Last Updated: 24 Apr 2019 10:02 by ADMIN
Created by: JeffSM
Comments: 1
Category: UI for WinForms
Type: Feature Request
0

Dear,

 

would be greate a Dynamic Theme, when we could change all colors from the theme programatically, using a XML to store the custom specification.

 

Inclusive, all themes could be turned into a Dynamic theme.

 

Best regards,

 

Jeff

1 2