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

Loading Dynamic Content

0 Answers 109 Views
PanelBar
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
AMS
Top achievements
Rank 1
AMS asked on 17 Mar 2010, 01:15 PM
Hi
I am trying to load a partial view (.ascx) file in my panels in which i have added treeview and dropdowns. When I add that partial view inside my panel, it stops working on the dropdown and treeview events.
Can we use Tree or Grid inside a partial view and call their events like this???
Any idea to resolve it?

<% Html.Telerik().PanelBar() 
       .Name("PanelBar") 
       .Items(items =>  
       { 
            items.Add() 
                 .Text("Products > Books") 
                 .Content(() =>  
                 {  
                 %> 
                        <% Html.RenderPartial("Tree"); %> 
                 <%  
                 }); 
       }) 
       .Render(); 
%> 
Tags
PanelBar
Asked by
AMS
Top achievements
Rank 1
Share this question
or