All Questions
Tagged with silverlight development
6 questions
0
votes
1
answer
107
views
Entering data into SharePoint lists via Silverlight forms
Morning all,
Can anyone advise me if it's possible to enter data into a SharePoint list via a Silverlight Application? if so, are there any basic steps that someone making thier steps into ...
2
votes
1
answer
672
views
Security Exception - Trying to load MySite Blog
When I try to run this async query it fails:
private void SomeFunction()
{
Thread thread = new Thread(GetBlogInfo);
thread.Start();
}
private void GetBlogInfo()
{
...
2
votes
1
answer
76
views
Silverlight application privileges
I have a silverlight application which uses the client object model to access the sharepoint server.
When i run the app "out-of-browser" with elevated trust everything works great, but when i try it ...
1
vote
1
answer
415
views
Help with Silverlight and SharePoint
As a continuation of my last question, I can get the data correctly now just I am having a problem getting it to display. I want it to be in a DataForm control but I seem to be unable to connect it ...
0
votes
2
answers
3k
views
How to read from a list using Silverlight and the SharePoint 2010 Client Object Model?
I am attempting to write a simple Silverlight webpart that reads information from a list and then outputs it to a data grid. I can get all of the lists, their titles and their field titles fine but ...
2
votes
4
answers
3k
views
"Could not load file or assembly System.Windows.Controls" hosting Silverlight application
I'm working on a Silverlight 3 application. It works perfectly running within Visual Studio's ASP.NET Development Server.
Now I need to make it run within SharePoint. I have the object tag hosted ...