Hi,
I use following combobox
Could you advice me how can I manage to have my custom message if I select 4 days - I want to have "1347" instead of "4 items checked". I want to have values of those selected checkboxed written in the message...
Thanks a lot...
I use following combobox
<telerik:RadComboBox ID="rcbDaysOfWeek" runat="server" Width="150px" CheckBoxes="true" EnableCheckAllItemsCheckBox="true" EmptyMessage="No day selected"> <Localization AllItemsCheckedString="All days" CheckAllString="Select all" /> <Items> <telerik:RadComboBoxItem Text="Monday" Value="1" Checked="true" /> <telerik:RadComboBoxItem Text="Tuesday" Value="2" Checked="true" /> <telerik:RadComboBoxItem Text="Wednesday" Value="3" Checked="true" /> <telerik:RadComboBoxItem Text="Thursday" Value="4" Checked="true" /> <telerik:RadComboBoxItem Text="Friday" Value="5" Checked="true" /> <telerik:RadComboBoxItem Text="Saturday" Value="6" Checked="true" /> <telerik:RadComboBoxItem Text="Sunday" Value="7" Checked="true" /> </Items></telerik:RadComboBox>Could you advice me how can I manage to have my custom message if I select 4 days - I want to have "1347" instead of "4 items checked". I want to have values of those selected checkboxed written in the message...
Thanks a lot...