Hi,
I am bit new bee to this telerik controls, what i am trying do is, i have a webpart in which i have to display a grid which take input from different sharepoint lists. I am done with deploying, writing .xaml,,,,, I am writing a webservice to get data from sharepoint lists. as there is no webservice template in 2010 vs , I have taken empty asp.net project, added new service.. done coding... Added this reference to silverlight application.
public MainPage()
{
InitializeComponent();
FilesSoapClient obj1=new FilesSoapClient();
obj1.ReturndataCompleted += new EventHandler<ReturndataCompletedEventArgs>(obj1_ReturndataCompleted);
obj1.ReturndataAsync();
}
void obj1_ReturndataCompleted(object sender, ReturndataCompletedEventArgs e)
{
var result = e.Result;
gvMain.ItemsSource = result;
}
but it is throwing me some weird error.
i have attached image with error screen shot.
Is it really gud practice to populate list data from webservice.?
Can i pass datatable to silverlight application ?
Is there any other method to populate sharepoint list data in rad grid view in sharepoint webpart.
My environmnet is: sharepoint 2010, silverlight 3, Rad controls for silverlight Q1 2010 SP1..
Even though it is a simple issue ,please guide me.
Your minute can save my day