This question is locked. New answers and comments are not allowed.
Hi,
I have been using the autobox where I just had text options in the box but now I need to put a value behind each text option. I was using a string List and then the following to populate the box - radboxClients.ItemsSource = list1
How would I populate the autobox so I will be able to select the value as well as the text when the user makes a selection. I have my value (id) and my text (account_name) in the below class...so I will be looking at how to populate the autobox from the below queryResult.
Thanks
Dim context = New Telerik.Storage.Extensions.Context("HandheldsK3_DB", Telerik.Storage.Extensions.DatabaseLocation.Local) Dim queryResult = context.[Get](Of class_Conns.customersCustom1)("Select account_name, id from test1") context.SaveChanges() context.CloseDatabase()