Selecting items in Datalist

Hello. I have a RadzenDataList with a Template using a Radzen card with a RadzenImage.

This displays images (wrapped horizontally) which I would like for the user to be able to select but, I cannot find a "SelectItem" property on any of the controls involved with this design. Could you suggest a method for obtaining the selected RadzenImage or RadzenCard? Here is a skeleton of what I have. I tried using a RadzenListBox, but cannot see how to get the items to wrap horizontally. Thank you!

                                    <RadzenDataList TItem="***"
                                                    WrapItems="true"
                                                    Data="***">
                                        <Template Context="***">
                                            <RadzenCard>
                                                <RadzenImage Path="***" /> <br>
                                                <label style="margin-left:auto; margin-right:auto">***</label>
                                            </RadzenCard>
                                        </Template>
                                    </RadzenDataList>

Hi @mookey,

There is no built-in selection for the DataList component however you can use Click event of any component inside the template to obtain the the current clicked/selected.

Okay, thank you. I will try that.