Hello,
I want to use the LoadOnDemand feature of the RadTreeView.
But the NodesNeeded event gets executed on unwanted occasions, such as if I set the form's Enabled property to False, if I use the FindNodes method, or if I refer to the RadTreeview control.
The utility of loading on demand then becomes a defect for me.
It would be good if this event was executed only once, when you want to load the node.
Am I doing something wrong?
Excuse my English. I am Francophone.
Thank you

Hello,
I want to remove a row from the grid, I remove it from the DataSet but it doesn't refresh in the grid. How do I make the grid update after deleting a row in the DataSet?
Is there a better way to do it? Maybe deleting the row in the grid?
What is the best strategy to do it?
I only want to do this in memory, since the update in the database is done with ADO and SQL statements.
Best regards.
My code:
DataRow[] drr = dsHojaCalculo.Tables[0].Select("key_guid = '"+ esteAEliminarGuid+ "' ");
foreach (var fila in drr)
{
fila.Delete();
dsHojaCalculo.Tables[0].AcceptChanges();
}
gridHc.DataSource = null;
gridHc.DataSource = dsHojaCalculo.Tables[0];

I have it mostly working but am having one issue. I am trying to get the rowinfo in the target grid where the files are dropped. Grid 1 has a one to many relationship to grid 2. I am trying to drag data from grid 2 to a different in row in Grid 1. I want to get the serialID field of the target row in Grid 1, but have not been able to find a way to get that info.
Thank you as always.

Hi,
I have put the calendar into a popupeditor, the purpose is to choose a "from" and "to" date for filtering data. For that reason I'm trying to only allow 2 selected dates. It doesn't seem to be so straight forward, currently I tried to prevent more than 2 selected dates in the SelectionChanged and SelectionChanging event by using e.Cancel = true and some other stuff also. But it's like the events doesn't detect it before too many dates are selected?
The best scenario would be if there's a way to disable the "drag selection" so that it's only possiple to select a date by clicking a date.
In any case, how can this behavior be achieved?
Thanks in advance!


Hi.
I tried to do the same for the example in this article, but there was no drop-down list. It also did not accept the values on the list.
CellIndex dataValidationRuleCellIndex = new CellIndex(0, 0); ListDataValidationRuleContext context = new ListDataValidationRuleContext(worksheet, dataValidationRuleCellIndex); context.InputMessageTitle = "Restricted input"; context.InputMessageContent = "The input is restricted to the week days."; context.ErrorStyle = ErrorStyle.Stop; context.ErrorAlertTitle = "Wrong value"; context.ErrorAlertContent = "The entered value is not valid. Allowed values are the week days!"; context.InCellDropdown = true; context.Argument1 = "Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday"; ListDataValidationRule rule = new ListDataValidationRule(context); worksheet.Cells[dataValidationRuleCellIndex].SetDataValidationRule(rule);

I need to loop through all controls/elements and child controls/elements on a form and disable the control/element if the Tag property = "someText".
The following code works for controls and child controls on the form, but not for radRibbonBar elements.
=================================================
foreach (var control in GetControlHierarchy(this))
{
if (control.Tag != null)
{
if (control.Tag.Equals("someText"))
{
control.Enabled = false;
}
}
}
private IEnumerable<Control> GetControlHierarchy(Control root)
{
var queue = new Queue<Control>();
queue.Enqueue(root);
do
{
var control = queue.Dequeue();
yield return control;
foreach (var child in control.Controls.OfType<Control>())
queue.Enqueue(child);
} while (queue.Count > 0);
}
======================================================
How would I change the above code to include radRibbonBar elements?
Thank you,

How to add a click event to the form header? How to do it so that the event fires only when you click on the header, excluding buttons and tabs.
For clarity, I have highlighted the area in the picture below, only it should react to the event.

Hi,
I'm currently using a dataentry connected to a bindingnavigator. I'm using the below code to check when the bindingsource collection change.
The goal is to disable the delete button in the bindingnavitor when the bindingsource collection has 1 item in it like shown below:
bs.ListChanged += (s, e) => { int itemCount = Convert.ToInt32(bindingNavigator.BindingNavigatorElement.PageLabel.Text.Split(' ')[1]); if (itemCount == 1) { bindingNavigator.BindingNavigatorElement.DeleteButton.Enabled = false; } else { bindingNavigator.BindingNavigatorElement.DeleteButton.Enabled = true; } };
However, I'm having a hard time disable the delete button. As seen in the ListChanged, I'm using below code to disable the button, but it seems that it has no effect at all. Am I doing something wrong?
bindingNavigator.BindingNavigatorElement.DeleteButton.Enabled = false;