Completed
Last Updated: 01 Jul 2015 15:07 by ADMIN
Completed
Last Updated: 15 Jun 2015 15:24 by Guillaume
Version: 2014.3.1024 - NET 4.0 - Visual Studio 2012 Pro

The bug occurs when checkboxes are enabled and one or more items are set invisible on the server-side (Visible=false). Checked items are not persisted correctly between postbacks. I have included a sample project to show the incorrect behavior.

Steps to reproduce to problem:

1- Start the sample project
2- The first combobox has 10 items. The first one has been set invisible.
3- Check an item
4- Click the "Select" button
5- The wrong item is checked. The checked item change at every postback

Also, the RadComboBox control should automatically select the first visible item instead of the first item of the list. The second combobox of the sample projet shows this behavior.

Thank you for looking at this issue.

Guillaume
Won't Fix
Last Updated: 07 May 2015 15:28 by ADMIN
Completed
Last Updated: 26 Mar 2015 09:59 by Arnstein
In Lightweight rendering mode, the drop-down arrow has cursor type 'text' instead of 'default' in Internet Explorer (11).
Example:
http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/rendermode/defaultcs.aspx?skin=Default
Completed
Last Updated: 24 Mar 2015 14:06 by ADMIN
Completed
Last Updated: 29 Jan 2015 21:17 by Jim Handwerk
Declined
Last Updated: 10 Dec 2014 05:26 by Yousef Salimpour
Created by: Yousef Salimpour
Comments: 3
Category: ComboBox
Type: Bug Report
3
In ComboBox If somehow focus is moved to dropdown element (e.g. when user clicks on a header, or on load more items button) then arrow keys and keyboard support won't work anymore.
It can be fixed by simply setting dropdown tabindex to say 1 and attaching ComboBox's own _onKeyDown handler to dropdown keydown too.
Completed
Last Updated: 20 Nov 2014 16:43 by Imported User
ADMIN
Created by: Hristo Valyavicharski
Comments: 3
Category: ComboBox
Type: Feature Request
1

			
Completed
Last Updated: 11 Nov 2014 09:25 by ADMIN
Completed
Last Updated: 11 Nov 2014 09:17 by Elena
Completed
Last Updated: 11 Nov 2014 09:00 by ADMIN
ADMIN
Created by: Danail Vasilev
Comments: 1
Category: ComboBox
Type: Bug Report
0
For the time being the following CSS workaround can be used:
CSS:
    <style type="text/css">
        .RadButton.rbSkinnedButton input {
            padding-left: 6px;
            padding-right: 10px;
            margin: 0;
        }
    </style>
ASPX:
        <telerik:RadComboBox ID="RadComboBoxDateTimeFilter" runat="server">
            <ItemTemplate>
                <telerik:RadButton ID="RadButtonApply" Text="Apply" AutoPostBack="false" runat="server" />
                <telerik:RadButton ID="RadButtonClear" Text="Clear" AutoPostBack="false" runat="server" />
            </ItemTemplate>
            <Items>
                <telerik:RadComboBoxItem Text="" Value="" Selected="true" />
                <telerik:RadComboBoxItem Text="" Value="" />
            </Items>
        </telerik:RadComboBox>
Completed
Last Updated: 10 Nov 2014 15:09 by ADMIN
Declined
Last Updated: 05 Nov 2014 14:32 by ADMIN
Completed
Last Updated: 05 Nov 2014 14:14 by Elena
Completed
Last Updated: 05 Nov 2014 11:36 by Elena
When EnableAutomaticLoadOnDemand="true" is set and no Height is specified, the first time RadComboBox is expanded only the topmost 3 or 4 items are visible.
The rest of the items become visible when they are hovered or if the ComboBox is expanded again.
Declined
Last Updated: 30 Oct 2014 11:54 by ADMIN
Having a RadCombobox on a form and assign a EmptyMessage later containing a diacritical character, the EmptyMessage is treated like it has been entered as a value.
So it will make a call to the webservice using that value which it should not do.

Code example:
        protected void TestLinkButton_Click(object sender, EventArgs e)
        {
            this.CountryComboBoxControl.EmptyMessage = "Bitte wählen Sie ein Land*";
        }
Completed
Last Updated: 29 Oct 2014 16:02 by ADMIN