Hello,
I'm using a RadDateTimePicker nested in a custom user control and I'm having an issue when I click on a date or on a navigation arrow, the calendar closes itself and does not changes its value. I'm using it on an multi-thread application.

dsVariables = GetDocVariables()
RadTreeView2.Nodes.Clear()
RadTreeView2.ParentIDMember =
"ParentID"
RadTreeView2.ValueMember =
"HierarchicalID"
RadTreeView2.DisplayMember =
"VariableText"
RadTreeView2.DataSource = dsVariables.Tables(0)

Hello,
Like GridView, is summary row available in the Virtual grid? I want the count of rows before and after filtering in my virtual grid.
Thanks,
kanors

hello everyone
i trying to give all cells a CellSpacing in a gridviewtemplate.
for a radgridview this can be done with radgridview.TableElement.CellSpacing = 3.
Thanks for your help
andre
DataSet ds = new DataSet();
DataTable dt = new DataTable();
dt.TableName = "Tasks";
dt.Columns.Add("Id");
dt.Columns.Add("ParentID");
dt.Columns.Add("Title");
dt.Columns.Add("Start", typeof(DateTime));
dt.Columns.Add("End", typeof(DateTile));
dt.Rows.Add("1", "","Item1", new DateTime(2018,03,16), new DateTime(2018,03,20);
dt.Rows.Add("2","1","child", new DateTime(2018,03,16), new DateTime(2018,03,17);
dt.Rows.Add("3","","Item2", new DateTime(2018,03,16), new DateTime(2018,03,20);
ds.Tables.Add(dt);
this.radGanttView1.DataSource = ds;
radGanttView1.Items[0].ReadOnly = true;
radGanttView1.Items[0].Items[0].ReadOnly = true;
radGanttView1.Items[0].NextItem.ReadOnly = true;
Item2 is not moving but Item1 is still moving
I want Item1 is not moving too.

How do I make the group descriptor rows automatically increase in height so that they display all of the text?
Note I'm setting the text in the groupSummaryEvaluate event


hi~
radGanttView1.GanttViewElement.DragDropService.PriviewDragStart += DragDropService_PreviewDragStart;
private void DragDropService_PreviewDragStart(object sender , PreviewDragStartEventArgs e)
{
GanttViewSummaryElement element = e.DragInstance as GanttViewSummaryElement;
if(element != null)
{
// Get Start and End
}
}
How can I define the grid back color - the area in White in the attached screen shot of my test application ?
Is it possible to set it as transparent - to display the backgrond image of the hosting form
Thanks in advance