Completed
Last Updated: 24 Jun 2022 12:56 by ADMIN
Declined
Last Updated: 14 Jul 2014 08:13 by duraid wadie
Created by: duraid wadie
Comments: 2
Category: ComboBox
Type: Feature Request
1
We have evaluated your controls for few days for the last 3 years now. And you still dont support check boxes and load on demand. (we keep getting the same response from your forms). There are other companies already do that. If you can include this feature in your future development that will be great. As i have mentioned to your sales team about the team size and the number of license we need but unfortunately this feature is not available so we can not buy your controls. Thanks
Declined
Last Updated: 08 Apr 2020 14:07 by ADMIN
Created by: Mark
Comments: 2
Category: ComboBox
Type: Bug Report
1

Browser:

Microsoft Edge 44.18362.449.0

Telerik Control:

RadCombobox

Teleri Version:  Version=2017.3.913.45,

Issue:

When a item is selected and a postback is occured, the SelectedValue returns an empty string.

Expected behavior:

The correct SelectedValue should be return.

Thing that have been tried so far:

1: upgrade the telerik to the latest version (2020.114) ---> issue persists

2: set autopostback to "true" problem solved

3: use other browsers (chrome, FireFox, new Version 79.0.309.68 ) issue disappears

Sample code: 

1: aspx

<telerik:radcombobox
        id="ddlSupplier"
        runat="server"
        skin="Material"
        rendermode="Lightweight"
        cssclass="materializeit"
        enableloadondemand="true"
        inputcssclass="browser-default"
        width="100%"
        filter="Contains"
        highlighttemplateditems="true"
        showmoreresultsbox="false"
        onitemsrequested="ddlSupplier_ItemsRequested" autopostback="false">
    </telerik:radcombobox>

2: code behind

protected void Page_Load(object sender, EventArgs e)
    {
    }
 
    protected void saveIssue_Click(object sender, EventArgs e)
    {
 
 
    }
 
    protected void ddlSupplier_ItemsRequested(object sender, Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs e)
    {
        RadComboBoxItem li = new RadComboBoxItem("Alan Jones (Brunel Systems Pty Ltd, test site)", "123");
 
        ddlSupplier.Items.Add(li);
 
         li = new RadComboBoxItem("Jackie Chiu (Optimum Construction, Optimum Construction (Sydney)) ", "23" );
 
        ddlSupplier.Items.Add(li);
 
         li = new RadComboBoxItem("Erik Baker (Optimum Construction, Optimum Construction (Sydney))", "2323");
 
        ddlSupplier.Items.Add(li);
    }
 
    protected void b_Click(object sender, EventArgs e)
    {
        var a = ddlSupplier.SelectedValue;  // most of the time returns "" for Edge
    }
  

 

 

 

 

Declined
Last Updated: 05 Nov 2014 14:32 by ADMIN
Completed
Last Updated: 16 Jul 2014 14:15 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: ComboBox
Type: Feature Request
1

			
Declined
Last Updated: 07 Apr 2014 07:28 by ADMIN
Created by: Paresh
Comments: 1
Category: ComboBox
Type: Feature Request
1
Hi,
RadComboBox does not having direct way to set its height, not dropdown height.
It is required functionality because its height should be as per website design.
Unplanned
Last Updated: 09 Jun 2021 18:19 by ADMIN
Created by: Dave
Comments: 0
Category: ComboBox
Type: Bug Report
1

The OnClientTextChange event is triggered inconsistently in RadComboBox.

Typing custom text in the following RadComboBox and pressing enter does not fire the event:

        <script lang="javascript" type="text/javascript">
            function OnClientTextChange(sender, eventArgs) {
                alert("You typed " + sender.get_text());
            }
        </script>

        <telerik:RadComboBox
            ID="RadComboBox1"
            runat="server"
            AllowCustomText="true"
            OnClientTextChange="OnClientTextChange">
            <Items>
                <telerik:RadComboBoxItem Text="item1" Value="item1" />
                <telerik:RadComboBoxItem Text="item12" Value="item12" />
                <telerik:RadComboBoxItem Text="aaaa" Value="aaa" />
                <telerik:RadComboBoxItem Text="bbbb" Value="bbb" />
                <telerik:RadComboBoxItem Text="AAAA1" Value="AAAA1" />
                <telerik:RadComboBoxItem Text="bbbb1" Value="bbb1" />
                <telerik:RadComboBoxItem Text="item11" Value="item11" />
            </Items>
        </telerik:RadComboBox>

Unplanned
Last Updated: 14 Apr 2015 08:56 by Vesko
Completed
Last Updated: 20 Nov 2014 16:43 by Imported User
ADMIN
Created by: Hristo Valyavicharski
Comments: 3
Category: ComboBox
Type: Feature Request
1

			
Declined
Last Updated: 29 Oct 2014 12:38 by ADMIN
Created by: Radu
Comments: 1
Category: ComboBox
Type: Bug Report
1
When combo popups to the top of the page it goes out of the browser viewport.
Reproduce: 
A RadComboBox on the bottom of your page and the page height is larger than the viewport.
When you scroll down the page to the RadComboBox and open it the itembox (100+ items) height will be higher than the view port.
See attachment 'RadComboBox.png'

Also the auto shrink doesn’t work in this situation see attachment RadComboBox2.png

Unplanned
Last Updated: 28 Oct 2021 09:06 by ADMIN
Created by: Tom
Comments: 1
Category: ComboBox
Type: Bug Report
1

At the first time requesting data, RadClientDataSource sends multiple requests to the server. All subsequent requests for Paging, Sorting work as expected.

Declined
Last Updated: 12 Jul 2016 14:18 by ADMIN
Created by: BiBongNet
Comments: 1
Category: ComboBox
Type: Feature Request
1
Add ability to filter with accent sensitive, IsAccentSensitive property  (like the existing IsCaseSensitive).
Declined
Last Updated: 28 Oct 2014 14:53 by ADMIN
Selecting an item from the RadComboBox and then pressing Enter key, does not trigger the default button(if set) of the form/panel in IE and Chrome. The workaround is to handle the client-side OnClientKeyPressing event of the RadComboBox and manually trigger the clicking of the default button.For example:

ASPX:

    <asp:Panel ID="Panel1" runat="server" DefaultButton="RadButton1">
        <telerik:RadTextBox ID="RadTextBox1" runat="server">
        </telerik:RadTextBox>
        <asp:Label ID="Label1" Text="" runat="server" />
        <telerik:RadButton ID="RadButton1" runat="server" OnClick="OnClick1" Text="Click" />
        <telerik:RadComboBox ID="RadComboBox1" runat="server" OnClientKeyPressing="OnClientKeyPressing">
            <Items>
                <telerik:RadComboBoxItem Text="text1" Value="val1" />
                <telerik:RadComboBoxItem Text="text2" Value="val2" />
                <telerik:RadComboBoxItem Text="text3" Value="val3" />
            </Items>
        </telerik:RadComboBox>
    </asp:Panel>

JavaScript:
    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
        <script type="text/javascript">
            function OnClientKeyPressing(sender, args) {

                if (args.get_domEvent().keyCode == 13) {
                    $find("<%=RadButton1.ClientID %>").click();
                }
            }
        </script>
    </telerik:RadCodeBlock>
Declined
Last Updated: 01 Nov 2013 13:06 by Haris
rad combobox on clientblur event setting custom text fine when we are going to press tab  key but we are getting issue when we are selecting item from rad combo box manually using mouse.on clicking suppose i have text :  ils - apple  i have called onclien
Completed
Last Updated: 14 Mar 2014 08:59 by Yousef Salimpour
Created by: Yousef Salimpour
Comments: 0
Category: ComboBox
Type: Bug Report
1
If we dynamically remove highlighted item from a ComboBox at clientside, afterwards get_highlightedItem still returns that deleted item.
ComboBox takes care of deleting selected item at like 497 of RadComboBox.js. Highlighted item should be taken care of too.
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.
Completed
Last Updated: 29 Jan 2015 21:17 by Jim Handwerk