Completed
Last Updated: 07 Dec 2022 13:09 by ADMIN
Release R1 2023
Unplanned
Last Updated: 12 Mar 2019 05:39 by ADMIN
ADMIN
Created by: Plamen
Comments: 1
Category: SearchBox
Type: Feature Request
5

			
Declined
Last Updated: 30 Jun 2015 10:54 by ADMIN
Created by: Andy
Comments: 1
Category: SearchBox
Type: Feature Request
2

			
Unplanned
Last Updated: 10 Sep 2015 12:57 by Andy
Created by: Andy
Comments: 0
Category: SearchBox
Type: Feature Request
2

			
Declined
Last Updated: 14 Mar 2014 08:50 by ADMIN
Created by: Andy
Comments: 1
Category: SearchBox
Type: Feature Request
2

			
Won't Fix
Last Updated: 07 Jun 2021 13:57 by ADMIN
Declined
Last Updated: 01 Aug 2016 14:16 by ADMIN
ADMIN
Created by: Boyan Dimitrov
Comments: 1
Category: SearchBox
Type: Feature Request
2

			
Declined
Last Updated: 16 Jun 2021 08:12 by ADMIN
Hi, in SearchBox, when the field being searched is a date, we would like to be able to search via the 'smart parsing engine' of DateInput.
Unplanned
Last Updated: 20 Apr 2022 08:55 by Amit
Created by: Amit
Comments: 0
Category: SearchBox
Type: Feature Request
2
Implement the option that will display "No Results Found" in case no items are returned after the request.
Completed
Last Updated: 19 Mar 2014 09:22 by ADMIN
Created by: Fabrice
Comments: 2
Category: SearchBox
Type: Bug Report
1
There's a problem with radSearchbox inserted in a radWindow contenttemplate.
On First show  then inputText width is equal to 0 until a contextitem is selected or a button pushed . (test on ie10 firefox and chrome)


code example :

  <telerik:RadWindow runat="server" ID="RadWindow1" Modal="true"     AutoSize="true"
        Behaviors="Close,Move">
        <ContentTemplate>
         <telerik:RadSearchBox ID="RadSearchBox1" runat="server" Width="350" SearchContext-ShowDefaultItem="False"
                        OnClientSearch="onClientSearch" OnClientButtonCommand="onClientButtonCommand"
                        ShowSearchButton="false" Skin="Default">
                       
                        <DropDownSettings Height="150" Width="300" />
                        <Localization LoadingItemsMessage="recherche en cours....." DefaultItemText="Saisissez le nom du point ici" />
                        <WebServiceSettings Path="PointDeTournee.aspx" Method="GetResults" />
                        <SearchContext>
                            <Items>
                                <telerik:SearchContextItem Text="POI" Key="1" ImageUrl="../Img/POI/Special_Divers-Bl.bmp"  Selected="true"/>
                                <telerik:SearchContextItem Text="PA" Key="2" ImageUrl="../Img/POI/PA.bmp" />
                            </Items>
                        </SearchContext>
                    </telerik:RadSearchBox>
          </ContentTemplate>
    </telerik:RadWindow>
Declined
Last Updated: 19 Apr 2022 17:36 by ADMIN
Created by: BiBongNet
Comments: 1
Category: SearchBox
Type: Feature Request
1
- Add Filter="None" (as discussed here: http://www.telerik.com/community/forums/aspnet-ajax/search-box/how-can-i-set-filter-to-none.aspx).
Completed
Last Updated: 05 Nov 2014 10:37 by Elena
Completed
Last Updated: 14 Sep 2021 11:16 by ADMIN
Release Q2 2015
Declined
Last Updated: 29 Jul 2016 12:03 by ADMIN
ADMIN
Created by: Nencho
Comments: 1
Category: SearchBox
Type: Feature Request
1

			
Unplanned
Last Updated: 03 Nov 2020 14:26 by ADMIN
Created by: Mike
Comments: 0
Category: SearchBox
Type: Feature Request
1
Please implement WAI-ARIA support in RadSearchBox with and without a Search Context.

It needs the same type of logic added as the AutoComplete and ComboBox control so that JAWS can speak and navigate the list items properly.
It looks like there was a little started because it renders an ARIA live region for status, but never writes to it from what I can tell.

I know this document lists the current controls that support ARIA - http://docs.telerik.com/devtools/aspnet-ajax/controls/wai-aria-support-and-screen-readers

Thanks,
Mike
Completed
Last Updated: 09 Jul 2018 12:48 by ADMIN
A workaround is to disable the embedded jQuery and use an older version (for example, 1.11.1 which is the previous version the suite used): https://docs.telerik.com/devtools/aspnet-ajax/controls/scriptmanager/disabling-the-embedded-jquery

Repro steps:

- Put a searchbox on the page with some data source
- Hook its postback handler, OnSearch
- search something in it, select the item to postback

expected: search fired

actual: JS error in FF


        <telerik:RadSearchBox RenderMode="Lightweight" runat="server" ID="RadSearchBox1"
            DataTextField="Name"
            DataValueField="id"
            OnSearch="RadSearchBox1_Search">
        </telerik:RadSearchBox>


    protected void Page_Load(object sender, EventArgs e)
    {
        RadSearchBox1.DataSource = GetData();
        RadSearchBox1.DataBind();
    }
    protected DataTable GetData()
    {
        DataTable tbl = new DataTable();
        tbl.Columns.Add(new DataColumn("id", typeof(decimal)));
        tbl.Columns.Add(new DataColumn("Name", typeof(string)));
        tbl.Columns.Add(new DataColumn("Reason", typeof(string)));
        tbl.Columns.Add(new DataColumn("someField", typeof(decimal)));
        tbl.Columns.Add(new DataColumn("anotherField", typeof(string)));
        tbl.Rows.Add(new object[] { 1, "one", "fi\\nrst", 2, "5" });
        tbl.Rows.Add(new object[] { 2, "two", @"se\ncond", 3, null/*SIMULATE EMPTY VALUE*/ });
        tbl.Rows.Add(new object[] { 3, "three", "third", 4, "5" });
        tbl.Rows.Add(new object[] { 4, "four", "fourth", 5, "5" });

        return tbl;
    }

    protected void RadSearchBox1_Search(object sender, SearchBoxEventArgs e)
    {
        Response.Write(DateTime.Now.ToString());
    }
Unplanned
Last Updated: 19 Jul 2022 09:22 by Issac
The "Show All Results" is Searchbox cannot be accessed with a keyboard when navigating through the items in the dropdown. 
1 2