Completed
Last Updated: 14 Jan 2022 12:41 by ADMIN
Release R1 2022
Created by: Scott
Comments: 0
Category: SearchBox
Type: Bug Report
0

We are having a touchscreen problem with the RadSearchBox, specifically on the MicroSoft surface touchscreen. I have tested this out on mobile phone and other tablets, but the problem occurs on the Surface.

The issue is that you cannot change the SearchContext, because it never seems to recognize the touch event.

 

You can touch the SearchContext to initiate the drop-down event, but then it is impossible to select an item from the list.

There are no other problems with Telerik controls on the Surface (the touch events on RadDropDown, RadTabStrip, RadComboBox, RadMenu, etc.) all seem to be working fine.

Completed
Last Updated: 14 Sep 2021 11:16 by ADMIN
Release Q2 2015
Completed
Last Updated: 07 Oct 2019 12:18 by ADMIN
Created by: Thomas
Comments: 1
Category: SearchBox
Type: Bug Report
0
The Tooltip property of the SearchBoxButton in the Buttons collection of the RadSearchBox is not rendered on the button element client-side.
Completed
Last Updated: 27 Aug 2019 12:19 by ADMIN
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());
    }
Completed
Last Updated: 19 Feb 2016 23:32 by chris
Completed
Last Updated: 24 Jun 2015 14:55 by ADMIN
Completed
Last Updated: 13 Nov 2014 15:24 by ADMIN
Created by: Ɓukasz
Comments: 3
Category: SearchBox
Type: Bug Report
0
RadSearchBox.Focus() doesn't work in Internet Explorer. It works correctly in different browsers (Firefox, Chrome). Attached project shows the problem. 
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>