c# - How I get the Values of a Lookup field in Silverlight with Client OM -


first of all, apology poor english. ok.

i have in sharepoint 2010 list lookup field (list1), , other list (list2) values of lookup field of first list. in silverlight application, i'm working client object model. have combobox (lookup field of list1) want fill values of list2.

when select item of combobox want save value in lookup field of list1. tried fieldlookup , fieldlookupvalue class don't have successful result.

any idea this?

this should work:

ienumerablemystackpaneltobindonsearch = ienumerablemystackpanellist.where(stackpanel => (((fieldlookupvalue)stackpanel["stackpanellookup"]).lookupvalue.tolowerinvariant() == forpanel.title.tolowerinvariant())); 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -