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

Treeview in Combobox + Sharepoint Mode

5 Answers 90 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
VIvek
Top achievements
Rank 1
VIvek asked on 28 Oct 2008, 07:43 PM
hello,

I want to use Silverlight Combobox (with treeview inside it) in MOSS. Can you please let me know the steps for this process?

Thanks
Vivek

5 Answers, 1 is accepted

Sort by
0
Konstantin Petkov
Telerik team
answered on 29 Oct 2008, 06:23 AM
Hi VIvek,

The integration between Silverlight and MOSS is an interesting question. I've performed a quick search on the topic and found some good articles/tutorials and discussion you might be interested checking out:

Silverlight in MOSS 2007 (SP1) on ASP.NET WebLogs
Silverlight & MOSS Integration Solutions
Silverlight Sharepoints MOSS and HttpHandlers
MOSS and Silverlight discussion on SharePoint forums

Let us know if you need further assistance.

Regards,
Konstantin Petkov
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
VIvek
Top achievements
Rank 1
answered on 29 Oct 2008, 08:41 AM
Thanks for replying. But, do you have any sample where i can add Treeview inside Combobox (for Silverlight control of yours). I know how to do this for RAD AJAX control kit, but no sample for silverlight.

Thanks
Vivek
0
Valentin.Stoychev
Telerik team
answered on 30 Oct 2008, 10:24 AM
Hi VIvek,

Yes you can - just add the TreeView as a child of the ComboBox. Nothing special. See the code below:
<ComboBox Margin="20">  
                <telerikNavigation:RadTreeView SelectionMode="Multiple"   
                        IsEditable="True" IsOptionElementsEnabled="True">  
                      
                        <telerikNavigation:RadTreeViewItem Header="Item1.1" /> 
                        <telerikNavigation:RadTreeViewItem Header="Item1.2" /> 
                        <telerikNavigation:RadTreeViewItem Header="Item1.3" /> 
                      
                    <telerikNavigation:RadTreeViewItem Header="Item2">  
                        <telerikNavigation:RadTreeViewItem Header="Item2.1" /> 
                        <telerikNavigation:RadTreeViewItem Header="Item2.2" /> 
                        <telerikNavigation:RadTreeViewItem Header="Item2.3" /> 
                    </telerikNavigation:RadTreeViewItem> 
                </telerikNavigation:RadTreeView> 
                </ComboBox> 


Greetings,
Valentin.Stoychev
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
VIvek
Top achievements
Rank 1
answered on 30 Oct 2008, 06:40 PM
Thank you for replying. I've two more questions (for now)
1. Treeview is coming nicely inside combobox. But, i'm not able to click/expand child items. whenever i do that, the combobox closes and shows all items list in combobox.
2. Is there a way to bind XML to tree rather than adding individual nodes. I've done that with your AJAX treeview. It has a method to load tree from xml.


I'm writing a POC based on your controls for MOSS 2007.

Thanks
Vivek
0
Valentin.Stoychev
Telerik team
answered on 31 Oct 2008, 07:23 AM
Hi VIvek,

Yes - we have this issue with RadComboBox right now. That's why I send you the sample code with the Microsoft Combo. We will address this issue within the official release which is coming next week.

Thanks for the feedback - let us know if you need any other help with the MOSS integration.

Greetings,
Valentin.Stoychev
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
TreeView
Asked by
VIvek
Top achievements
Rank 1
Answers by
Konstantin Petkov
Telerik team
VIvek
Top achievements
Rank 1
Valentin.Stoychev
Telerik team
Share this question
or