This question is locked. New answers and comments are not allowed.
Hello Telerik Team,
I am using Silverlight Radcombobox in one of my SharePoint application. I am able to bind sharepoiint list items to combo box using following approach.
XNamespace ns =
"#RowsetSchema"
;
var query = from x
in
e.Result.Descendants()
where x.Name == ns +
"row"
select x.Attribute(
"ows_Title"
).Value.Split(
','
)[0];
combobox.ItemsSource = query;
Now what i want is, the display text for combo box should be from Title column of sharePoint list,
But i want the ID of selected Title in code behind file.
I am getting 'title' from combobox.selectedvalue statement. How can i get ID using combobox.selectedvalue statement?
Can I set selectedvaluePath property to sharepoint list's ID column in code behind file.?
Please guide me.
Many Thanks,
Kaustubh Wadi