How to Populate XML in Telerik Tree View using Asp.net with C#

Hi I am using a web application with MVC3. I am new to this MVC3 with telerik treeview control. Can any one tell me some examples for populating XML file into Telerik tree view using MVC pattern?My XML File code is:\[code\]<Department> <Employee> <Salary value="http://stackoverflow.com/questions/10832125/20000"> <Designation value="http://stackoverflow.com/questions/10832125/Developer"> </Employee> <Experience> <Grade value="http://stackoverflow.com/questions/10832125/G2"> <Age value="http://stackoverflow.com/questions/10832125/26"> <YearsOfExperience value=http://stackoverflow.com/questions/10832125/4> </Experience> <Reward> <Rating value="3"> </Reward></Department>\[/code\]This is my XML file content. Here Department is my root node and Employee,Experience and Reward are the same level nodes.Salary,designation,grade, age and rating are the child nodes of the above nodes. Now I want to populate this XML file into Telerik Tree View control using MVC.can anyone please tell me the process with Controller, View ,CSHTML ?How can i achieve this implementation?
 
Back
Top