This is a migrated thread and some comments may be shown as answers.

Combo box with checkboxes

8 Answers 101 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Jon
Top achievements
Rank 1
Jon asked on 30 Jun 2011, 10:30 AM
Hi,

Am I right that the next version (Q2 2011) will include built in checkbox support for combo boxes.  At the moment I have a custom control based on the radcombobox that uses templates to handle checkboxes.  It works but so far I have managed to avoid using it with related combos.  

Now I will soon have the necessity to do this I'm wondering whether to enhance what my control does or wait for the next release?

Could you confirm if the new version will have built in checkbox support and if so when can we expect the beta for testing?

Regards,

Jon

8 Answers, 1 is accepted

Sort by
0
Kalina
Telerik team
answered on 06 Jul 2011, 08:12 AM
Hello Jon,

Implementing a RadComboBox feature - multiple select with checkboxes - has been scheduled for the next release.

Greetings,
Kalina
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Jon
Top achievements
Rank 1
answered on 06 Jul 2011, 08:36 AM
Hi Kalina,

Sounds good - although by the next release do you mean Q2 2011 or Q3 2011?

Best Regards,

Jon
0
Kalina
Telerik team
answered on 07 Jul 2011, 03:20 PM
Hi Jon,

By "next release" I mean Q2 2011.

Best wishes,
Kalina
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Jon
Top achievements
Rank 1
answered on 07 Jul 2011, 03:23 PM
Great thanks Kalina.  The only downside is that that is one more improvement that I'll be wanting to get running in my system!  Most updates I get maybe 1 or 2 changes.  This time round I'm going to be integrating a ton of changes!

Best Regards,

Jon
0
Kalina
Telerik team
answered on 12 Jul 2011, 04:47 PM
Hi Jon,

The new version (Q2 release) of RadControls for ASP.NET AJAX will be available for download tomorrow.

All the best,
Kalina
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Andy Green
Top achievements
Rank 2
answered on 14 Jul 2011, 12:36 PM
I'm changing my current implementation to use this new feature, my bindings have an ID & value. How do I get a comma separated list of id's.

Andy
0
Andy Green
Top achievements
Rank 2
answered on 14 Jul 2011, 12:45 PM
Dont worry guys, I've sorted it.

Andy
'put together a comma separated list of all selected Specialties
Dim Specialty As String = String.Empty
 
Dim sb As New StringBuilder()
Dim collection As IList(Of RadComboBoxItem) = ddlSpecialty.CheckedItems
 
For Each item As RadComboBoxItem In collection
    sb.Append(item.Value + ",")
Next
 
Specialty = sb.ToString
0
Kalina
Telerik team
answered on 18 Jul 2011, 03:45 PM
Hello Andy Green,

Glad that you managed to find a solution on your own.
Feel free to contact us if you need further assistance.

All the best,
Kalina
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

Tags
ComboBox
Asked by
Jon
Top achievements
Rank 1
Answers by
Kalina
Telerik team
Jon
Top achievements
Rank 1
Andy Green
Top achievements
Rank 2
Share this question
or