I'm using a Rad MultiSelect to search for people, and I would like to include a link to the selected person's profile page within the item template. I noticed that when I use a RadButton, I don't see it on the page. When I use the <a OnClick> I see the hyperlink but I can't hit the controller action.
Is it possible that I just can't use a RadButton in the MultiSelect Item Template?
<ItemTemplate>
<span class="k-state-default">
<p>#: data.Foo#</p>
<a OnClick="detailsViewClick" runat="server" ID="Bar">View Details</a>
<%-- Commented out because this does not even show up on the view
<telerik:RadButton RenderMode="Lightweight" ID="Bar" runat="server" Text="ViewDetails" OnClick="detailsViewClick" >
</telerik:RadButton>--%>
</span>
</ItemTemplate>