I have project in which I have hierarchical data to show. It's basically device controlling project in which multiple first layer parent device which has multiple child device/second layer parent (which again has multiple child / next layer parent so on). I want to display this hierarchical data on my home page which can collapse/expand every parent. Along with the display I want to add more item to every parent (like checkbox in parent header to select/deselect all child of that parent).
The Listview is showing this kind of data but up to one layer only and it not allow me to add other control to header. Can anyone suggest how can I accomplish this?
I want to display data like below:
Parent Header (with some more control like checkbox)
child1 child2 child3 child4 child5 - horizontally align (all child has checkbox to select/deselect and Small icon image)
Second layer parent (with some more control like checkbox)
child1 child2 child3 child4 - same as above
Parent Header
Multiple Childs
Second Layer Parent
Multiple Childs
Telerik 2009Q2 (2009.2.9.729), VS 2005 (v8.0.50727.762 SP.050727-7600), XP SP3 on Core2Duo 2.99GHZ with 3GB.
radChart1.PlotArea.YAxis.AddRange() function
for my numbers for the Min and Max are (-+)1.1E38. When I try to give the function a number for the step I get an overflow error. What do I need to do so that I can have a reasonable number for the step that doesnt include the many number inbetween these to Min and Max values? Is there a max number allowed when using the Chart?
thanks
private void RemoveSelectedFromListBox(RadListControl sourceListBox, RadListControl targetListBox)
{
if (sourceListBox.Items.Count == 0) { return; }
if (sourceListBox.SelectedItems == null) { return; }
for (int i = 0; i < sourceListBox.SelectedItems.Count; )
{
RadListDataItem item = sourceListBox.SelectedItems[i];
sourceListBox.Items.Remove(item);
targetListBox.Items.Add(item);
}
}
Appointment app =
new
Telerik.WinControls.UI.Appointment(DateTime.Now, DateTime.Now);
app.AllowDelete =
false
;
radScheduler1.Appointments.Add(app);