Unplanned
Last Updated: 12 Mar 2019 05:39 by ADMIN
ADMIN
Created by: Plamen
Comments: 1
Category: SearchBox
Type: Feature Request
5

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

			
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.
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. 
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.
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: 20 Apr 2022 08:52 by Amit
Created by: Amit
Comments: 0
Category: SearchBox
Type: Feature Request
0
Create an event that will be triggered after items have been requested.