Hello~~
I am find gantt item default expand property
void Init()
{
//current using this way
// I want gantt Items default expand is false
DataSet ds = New DataSet();
gantt.DataSource = ds;
foreach(item in gantt.Items)
{
item.expand = false;
}
}

I use the font property when working with RadPropertyGrid.
My user entered a font size of -1. An exception is thrown and the program falls.
For comparison in the PropertyGrid (WinForms), this situation is correctly handled.


I think I read how to do this but searching 'FormClosing' in this forum didn't find anything much.
I simply need to cancel the closing of a form (after user dialog confirmation). Is this the correct approach?
private void OnFormClosing(object sender, FormClosingEventArgs e){ var dlg = new DlgConfirmUnsavedForm(); var result = dlg.ShowDialog(); if (result == DialogResult.Cancel) { e.Cancel = true; OnClosing(e); return; //?? } else if (result == DialogResult.Yes) { SaveForm(); } ...}
By the way, post editing is terrible!

Hi,
I've a problem (again) when the MCCB is used in an Excel addin environment.
If the MCCB is used on a normal form (non modal) and you scroll (mouse wheel) inside the dropdown (grid) then the complete addin hangs.
If you do the same in an modal form, everything works fine.
Sample project is attached (rename to zip)
Steps to reproduce:
button2 -> opens modal form (OK)
button1 -> opens non modal form (not OK)
open dropdown and then scroll inside grid with mouse wheel
Is there any workaround? (even if I have to disable mouse scrolling, would be better than an hanging application)


I'm using two RadTreeView to Drag and Drop Nodes from Right to Left. When "Node 1" is Drag from Right and Drop to Left RadTreeView a Dialog is shown.
If I Drag and Drop other Node before "Node 1" the Dialog stuck and I cannot write on the TexBoxes.
How can I solve this issue?
Main Form
https://i.stack.imgur.com/Qf1QM.png
public partial class Main : RadForm{ public Main() { InitializeComponent(); } private void RightRadTreeView_DragEnded(object sender, RadTreeViewDragEventArgs e) { if (e.Node.Text == "Node 1") { new RadForm1().ShowDialog(); } } private void Form1_Load(object sender, EventArgs e) { //Right this.RightRadTreeView.Nodes.Add(new RadTreeNode { Text = "Node 1" }); this.RightRadTreeView.Nodes.Add(new RadTreeNode { Text = "Node 2" }); this.RightRadTreeView.Nodes.Add(new RadTreeNode { Text = "Node 3" }); this.RightRadTreeView.Nodes.Add(new RadTreeNode { Text = "Node 4" }); }}
Dialog Form
https://i.stack.imgur.com/hH7Ln.png

Hello there,
I have a telerik tree view with tens of thousands of nodes (around 190k). When I load this in most computers, it works ok, sometimes it takes a few seconds to open nodes, but that's acceptable for the number of nodes.
But, in some Windows 10 computers (not all of them), the tree takes more than 20 min to respond, if it ever does. This happens when clicking anywhere in the tree component (expand buttons, nodes, scrollbar...).
One of the computers details where it hangs is:
After debugging I found the tree is stuck in GetChild() method (it loops through all the nodes, several times), from RadTreeViewAccessibleObject (attached call stack). This seems to come from windows messages.
Checking in computers where the tree doesn't hang, this call never happens, which makes me think it's a problem with the implementation of windows messages, in some specific version of windows + hardware.
Any ideas on how to fix or bypass this?

Isn't there any way to add an add (+) button to the pageview so that the user can add pages from the pageview itself
please help me with a code and a screenshot.
thanks In advance