Unplanned
Last Updated: 15 Feb 2018 11:13 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: SearchBox
Type: Feature Request
0
When the SearchBox is on the right side of the screen and the dropdown width is larger than the SearchBox width, the dropdown goes outside the viewport:
Actual: https://www.screencast.com/t/4SoNcRCj
Expected/fixed: https://www.screencast.com/t/smfPgy767M

Workaround: 

<script>
    function OnClientLoad(sender, args) {
        sender._dropDown.on({ "reflowed": sender._onReflowed }, sender)
    }

    Telerik.Web.UI.RadSearchBox.prototype._onReflowed = function () {
        var that = this;
                       
        var $animationContainer = $(that._dropDown._animationContainer);

        if (that._enableScreenBoundaryDetection) {
            var availableSpace = that._dropDown._getAvailableSpace();
            var tableWidth = $(that._innerWrapElement).outerWidth();
            var dropDownWidth = $animationContainer.outerWidth();
            var overflow = dropDownWidth - (tableWidth + availableSpace.right);

            if (overflow > 0) {
                var left = parseInt($animationContainer.css("left"), 10);
                var newLeft = Math.max(left - overflow, left - (dropDownWidth - tableWidth));

                $animationContainer.css("left", newLeft);
            }
        }
    }
</script>
<telerik:RadSearchBox runat="server" ID="RadSearchBox1"
    DataTextField="ShipName" OnClientLoad="OnClientLoad" DropDownSettings-Width="500px" DataValueField="OrderID">        
</telerik:RadSearchBox>
Unplanned
Last Updated: 07 Dec 2017 15:35 by ADMIN
ADMIN
Created by: Nencho
Comments: 0
Category: SearchBox
Type: Feature Request
0
Validation is not implemented for RadSearchBox.

You can find attached an example that emulates validation of a search box through a dummy textbox and validators attached to that dummy textbox.
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: 29 Jul 2016 12:03 by ADMIN
ADMIN
Created by: Nencho
Comments: 1
Category: SearchBox
Type: Feature Request
1

			
Declined
Last Updated: 31 Mar 2016 14:30 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 1
Category: SearchBox
Type: Bug Report
0
In certain scenarios time between clicking (focusing ) the SearchBox and being able to interact with it.

The issue is iOS7 / Safari specific
Completed
Last Updated: 19 Feb 2016 23:32 by chris
Unplanned
Last Updated: 10 Sep 2015 12:57 by Andy
Created by: Andy
Comments: 0
Category: SearchBox
Type: Feature Request
2

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

			
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: 05 Nov 2014 10:37 by Elena
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: 14 Mar 2014 08:50 by ADMIN
Created by: Andy
Comments: 1
Category: SearchBox
Type: Feature Request
2

			
1 2