This is a migrated thread and some comments may be shown as answers.

Extract the control names of panorama elements

2 Answers 60 Views
Panorama
This is a migrated thread and some comments may be shown as answers.
Reynaldo
Top achievements
Rank 1
Reynaldo asked on 25 Oct 2017, 05:56 AM

Hi - I have a Panorama Control with 5 groups. Each group has variable number of tiles within. 

Using vb.net, how can I extract the names of each tile in every group? 

Thanks

2 Answers, 1 is accepted

Sort by
0
Accepted
Dimitar
Telerik team
answered on 25 Oct 2017, 08:52 AM
Hi Reynaldo,

The following snippet shows this:
Private Sub radButton1_Click(ByVal sender As Object, ByVal e As EventArgs)
    For Each group As TileGroupElement In radPanorama1.Groups
        For Each item In group.Items
            Console.WriteLine(item.Name)
        Next item
    Next group
End Sub

I hope this will be useful. Let me know if you have additional questions.

Regards,
Dimitar
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Reynaldo
Top achievements
Rank 1
answered on 25 Oct 2017, 11:27 PM

Hi Dimitar,

You're a genius - Thank you so much.

Tags
Panorama
Asked by
Reynaldo
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Reynaldo
Top achievements
Rank 1
Share this question
or