Hi,
How can I let the RadSearchbox button act as the DefaultButton in an asp:Panel?
So that when ENTER is given no other buttons on the page are triggered?
Marc

Is there a way to search for files in the directories when using the Document Manager/Image Manager. I see some code samples that allow for filtering in the selected folder, however that only filters one level and not sub directories. Looking for a way to search filenames through all sub folders.

I have a searchbox in a radwindows. Id like to focus my searchbox on opening the radwindows in javascript. Is it possible?

Radsearchbox is working fine when user input is by typing or copy-paste but when the input is from barcode reader radsearchbox not fire Search event.
¿Can i use an alternative event?

Hi,
How could one get the selected value from a radsearchbox client template back to the server code?
Is there any other method than sending it in a url querystring?
Thanks, Marc


It is possible resize icon added in searchboxbutton?. I'have a bootstrap page that changes font size
<telerik:RadSearchBox ID="rsbGenero" runat="server" Skin="Bootstrap" RenderMode="Lightweight" Width="100%"    MaxResultCount="10" DataValueField="ID" DataTextField="NOM"    DataKeyNames="ID, NOM"    DataSourceID="SqlDataSource"    OnDataSourceSelect="rsbGenero_DataSourceSelect"    OnSearch="radsearchbox_Search"    OnButtonCommand="radserchbox_ButtonCommand"    OnClientSearch="OnClientSearch"    OnClientButtonCommand="OnClientButtonCommand">    <DropDownSettings Height="300">    </DropDownSettings>    <Buttons>        <telerik:SearchBoxButton CommandName="AddGenero" Position="Left" AlternateText="<%$ Resources:appGlobales,Alta %>" ImageUrl="../../imagenes/Telerik/Add-icon.png" />    </Buttons></telerik:RadSearchBox>
I've tried it by CSS (cssclass on the button) but I can't do it. I also add another button dynamically (on search):
SearchBoxButton btnClean = new SearchBoxButton();btnClean.ImageUrl = "~/imagenes/Telerik/close-icon.png";btnClean.Position = SearchBoxButtonPosition.Right;btnClean.CommandName = "Clean";searchBox.Buttons.Add(btnClean);
Thank you in advance

hi team,
neen your urgent help for my code.
i need a java script funtion after entering text in the search context and press tab out, i want to fire onsearch event 
i have some logic in this which populate another textbox in the onsearch event in code behind
please help


Hi , 
  I am try to bind value from server side, for that , i page load i get values in datatable and bind in searchbox, and in DataSourceSelect i filter the values when key in inside search box, but when i key in i get error "Datasoruce not set ", how to bind datasource from server side instead of code behind ?
This is my code
Code Behind
<telerik:RadSearchBox EnableAutoComplete="true" DataValueField="userid"
            DataTextField="con" ID="radsearachUsers"  runat="server"></telerik:RadSearchBox>
--------------------------------
Page_Load
 Dim sqlDA As New SqlDataAdapter("Select con,userid from users", objConnection)
            Dim objDT As New DataTable
            sqlDA.Fill(objDT)
            radsearachUsers.DataSource = objDT
            radsearachUsers.DataValueField = "userid"
            radsearachUsers.DataTextField = "con"
            radsearachUsers.DataBind()
__________________________________
 Protected Sub radsearachUsers_DataSourceSelect(sender As Object, e As SearchBoxDataSourceSelectEventArgs) Handles radsearachUsers.DataSourceSelect
        Dim objConnection As New SqlConnection
        objConnection = New SqlConnection(getconnectionstring())
        objConnection.Open()
        Dim sqlDA As New SqlDataAdapter(" Select * from users where con like '%" & e.FilterString & "%' ", objConnection)
        Dim objDT As New DataTable
        sqlDA.Fill(objDT)
     
        radsearachUsers.DataSource = objDT
        radsearachUsers.DataSourceID = getconnectionstring()
        radsearachUsers.DataTextField = objDT.Rows(0)("Con")
        radsearachUsers.DataValueField = objDT.Rows(0)("userid")
        radsearachUsers.DataBind()
    End Sub
Pls reply asap
Thanks