Unplanned
Last Updated: 18 Mar 2024 15:44 by TRANSEPT
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 3
Category: Scheduler/Reminder
Type: Feature Request
6

			
Unplanned
Last Updated: 18 Mar 2024 12:00 by ADMIN

Add option to enter new value that is independent from the data source or items.

In Development
Last Updated: 14 Mar 2024 12:56 by ADMIN

There is a MDI parent RadForm containing a RadMenu with items. There is a MDI child RadForm which also contains a RadMenu with items. The mnemonics are enabled for all the menu items. The menu merging is disabled (RadMenu.AllowMerge=false).

When you show the parent form together with the child form and focus the child form, pressing the Alt key highlights only the menu items from the parent form. It is not possible to activate the menu items from the child form.

Please refer to the attached sample project and gif file illustrating the obtained incorrect behavior and the observed behavior with a standard MS Form and MenuStrip

Completed
Last Updated: 13 Mar 2024 08:49 by ADMIN
Release 2024.1.312

RadVirtualGrid is created to support a million records or more. Still it contains some "heavy" operations like CopySelection/CutSelection/Paste which can take a long time.

I would like to intercept these methods so I can show a "Please wait"-window during the operation. Furthermore I have the need to set a flag to true when such a operation is executing. 

Unplanned
Last Updated: 07 Mar 2024 14:27 by Walter
Created by: Walter
Comments: 0
Category: Spreadsheet
Type: Feature Request
0
Add axis titles to the charts
Unplanned
Last Updated: 07 Mar 2024 14:09 by Walter
Created by: Walter
Comments: 0
Category: Spreadsheet
Type: Feature Request
0
Editable chart in RadSpreadsheet
Unplanned
Last Updated: 05 Mar 2024 12:59 by ADMIN
Implement the export of notes (footnote, endnote) in the RtfFormatProvider of the RadRichTextEditor.
Duplicated
Last Updated: 26 Feb 2024 11:55 by ADMIN
ADMIN
Created by: Hristo
Comments: 2
Category: PdfViewer
Type: Feature Request
1

			
Duplicated
Last Updated: 26 Feb 2024 10:09 by ADMIN
Created by: Chris
Comments: 1
Category: ChartView
Type: Feature Request
1
Allow user to export current view as an image.
Planned
Last Updated: 21 Feb 2024 11:15 by ADMIN
Remove warning in VS when creating a project using our VS template targeting .Net 6 / 7
Planned
Last Updated: 21 Feb 2024 11:15 by ADMIN
We can update our extensions to honor the ImplicitUsings settings set globally for new projects. For the item templates, we will need to also check the project settings.
Declined
Last Updated: 16 Feb 2024 22:20 by ADMIN
Created by: Ian
Comments: 2
Category: ChartView
Type: Feature Request
0
Some other charting frameworks support ‘dynamic’ graphs/diagrams, where the graph shows nodes and links, and the user can drag the nodes around the page, and the other nodes are pulled around it. This is a great way to visualise and explore this kind of node+link data. Its also a great way to sell and app, as it looks cool.
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:30 by ADMIN
Fatching data from sql database in gridViewCommboBoxColumn select the value then retrieve data other column in the same Rows windows application in Vb.net
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 ?

Unplanned
Last Updated: 16 Feb 2024 19:39 by ADMIN
Created by: erwin
Comments: 3
Category: UI for WinForms
Type: Feature Request
1
It would be nice if the grid column chooser would support grouping of columns similar to the jquery grid
Unplanned
Last Updated: 16 Feb 2024 12:30 by Martin

I know that there is a RadRange Attribute but using it creates a dependency on Telerik.

Consider the scenario that the object to be configured via RadPropertyGrid is defined in a library that is used by multiple projects.

Unplanned
Last Updated: 16 Feb 2024 12:27 by ADMIN
Created by: n/a
Comments: 1
Category: PropertyGrid
Type: Feature Request
2

How to create a PropertyGrid and initialize it like this,modify the 'segments' arraies as I modify the 'count'

1 2 3 4 5 6