or

Dim retailDS As New DataSet
MyBase.ErrHdlr(DBLists.GetRetailProducersDDL(retailDS))
Me.rcbRetailProducer.DataSource = retailDS.Tables(0)
Me.rcbRetailProducer.DataTextField = "Name"
Me.rcbRetailProducer.DataValueField = "Value"
Me.rcbRetailProducer.DataBind()
Me.rcbRetailProducer.Items.Insert(0, New RadComboBoxItem(" ", "-1"))
Is there a demo on how I can make it so that I can any number of similar grids nested in each other like so:
=========================
== + RGrid 1 Row 1 ==
== + RGrid 1 Row 2 ==
== - RGrid 2 Row 1 ==
== + RGrid 3 Row 1 ==
== + RGrid 4 Row 1 ==
== + RGrid 2 Row 2 ==
== + RGrid 1 Row 3 ==
=========================
My guess would be to use a radgrid and dynamically generate its nestedviewtemplate with another grid then do the same x amount of times, but... not sure. Or maybe it can be accomplished with a hierarchical grid? Either way, I'd love an example.