Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/CS/MVCDemos/Views/Shared/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/CS/MVCDemos/Views/Shared/SearchPartial.ascx

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<dynamic>" %>
<div class="Search" id="SearchPanel">
    <% Html.DevExpress().Image(s => {
           s.Name = "SearchIcon";
           s.Properties.SpriteCssClass = "Pic";
           s.Properties.ClientSideEvents.Click = "DXDemo.focusSearch";
       }).Render();
    %>
    <% Html.DevExpress().TextBox(s => {
           s.Name = "SearchBox";
           s.Height = Unit.Pixel(23);
           s.Width = Unit.Pixel(242);
           s.ControlStyle.CssClass = "SearchBox";
           s.EnableTheming = false;
           s.Properties.EnableDefaultAppearance = false;
           s.Properties.ClientSideEvents.KeyUp = "DXDemo.Search.onSearchBoxKeyPress";
           s.Properties.ClientSideEvents.GotFocus = "DXDemo.Search.onSearchBoxGotFocus";
           s.Properties.ClientSideEvents.KeyDown = "DXDemo.Search.onSearchBoxKeyDown";
           s.AutoCompleteType = AutoCompleteType.Disabled;
       }).Render();
    %>
    <b class="Clear"></b>
</div>
<% Html.RenderPartial("SearchListPartial", new List<SearchResult>()); %>