<telerik:RadNumericUpDown Name="TopNSpinner" IsEditable="True" Minimum="1" ValueFormat="Numeric" Value="{Binding Result.TopNEventsCount, Mode=TwoWay}"/>TopNSpinner.NumberFormatInfo = new NumberFormatInfo() { NumberDecimalDigits = 0 };System.Threading.Thread.Sleep(xxxx);
RadRichTextBox textBox = new RadRichTextBox(); grid.Children.Add(textBox); textBox.ApplyTemplate(); textBox.UpdateEditorLayout(); textBox.Document = this.CreateDocument(); textBox.Print("MyDoc", PrintMode.Native); // It crash in here!IList<CheckBox> cbks = myGridView.ChildrenOfType<CheckBox>().ToList<CheckBox>();MyObject selectedProject = myGridView.SelectedItem as MyObject; int SelectedIndex = myGridView.Items.IndexOf(selectedProject);cbks[SelectedIndex].IsEnabled = True;
This works great, but except ChildrenOfType<>() only provides the rows for visible rows. I can not set EnableRowVirtualization to False.
How do I get the index of the visible row that is within the List of checkboxes (chks)?
Thanks in advance.

I have a chart with 11 series: 9 range series that together make topo map of standard deviations from the mean; 1 scatter series above the topo map of their standard deviations from the mean; 1 annotation series with MarkedZones in gray for every X axis value (sequential integers) that has been parameterized (have manually adjusted variance used in estimation) and with a red CustomLine to mark each X axis value with a 0 trend estimation. My problem is that I would like to have the annotations (MarkedZones and CustomLines) display with transparency over the 9 range series but under the scatter series. By default, everything overlays the annotations and so I have to make my 9 range series transparent to see the annotations. This makes the range series appear washed out. I can't seem to find a way to set a level of the annotations to display at the 10th level rather than the 1st. All eamples and forum entries show annotations as alway in the background of the chart area with all series over them, so I am dreaming in technicolor here. Do any of you generous and more experience folks have any suggestions.
Note I also observed that my scatter series is at the right level, but if I try to set the CollectionIndex it does not appear. I guess I am lucky it is were I need it.
Regards