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

Selected tiles title and text

1 Answer 50 Views
TileList
This is a migrated thread and some comments may be shown as answers.
JC
Top achievements
Rank 1
JC asked on 31 Jul 2013, 06:42 PM
Hi

I am trying the radtilelist. The control is new and hence I am struggling a bit to get things work. In the tilelist, the user clicks to select tiles in the tilelist and assume some few tiles are selected. There is an asp label and I want to append the selected tiles name and title text to this label. Please help.

Thanks
JC

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 01 Aug 2013, 07:01 AM
Hi JC,

Please have a look into the following C# code I tried which works fine at my end.

C#:
List<RadBaseTile> selectedTiles = RadTileList1.GetSelectedTiles();
foreach (RadBaseTile tile in selectedTiles)
{
    Label1.Text += tile.Name + " " + tile.Title.Text+","+"  ";
}

Thanks,
Shinu.
Tags
TileList
Asked by
JC
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or