Hi
Is there a way to automatically switch the up and down option when the search has reached the top or the bottom of the content?
Currently, if the cursor is at the bottom of the content the user must know where it is and either move the cursor to the top of the content, or change the Find/Find & Replace parameter to search "Up" rather than search "down". Users expect it to work like MS Word where once it reaches the end of the content it automatically starts searching again at the top of the document.
Thanks in advance

I use RadSkinManager :
<telerik:RadSkinManager ID="RadSkinManager1" runat="server" Skin="Default" EnableViewState="false" ShowChooser="false" />
I tried to reduce my pages' size so I am disabling ViewState on controls. I tried disabling RadSkinManager viewstate but it does not work
Here are viewstate size stats:
Control Id Type ViewState Size
ctl00$ctl00$ContentPlaceHolder1$RadSkinManager1 Telerik.Web.UI.RadSkinManager 0
ctl00$ctl00$ContentPlaceHolder1$SkinChooser Telerik.Web.UI.RadComboBox 912
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$Header Telerik.Web.UI.RadComboBoxHeaderFooterControl 48
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$Footer Telerik.Web.UI.RadComboBoxHeaderFooterControl 48
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i0 Telerik.Web.UI.RadComboBoxItem 60
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i1 Telerik.Web.UI.RadComboBoxItem 64
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i2 Telerik.Web.UI.RadComboBoxItem 64
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i3 Telerik.Web.UI.RadComboBoxItem 56
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i4 Telerik.Web.UI.RadComboBoxItem 72
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i5 Telerik.Web.UI.RadComboBoxItem 64
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i6 Telerik.Web.UI.RadComboBoxItem 64
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i7 Telerik.Web.UI.RadComboBoxItem 72
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i8 Telerik.Web.UI.RadComboBoxItem 64
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i9 Telerik.Web.UI.RadComboBoxItem 64
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i10 Telerik.Web.UI.RadComboBoxItem 60
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i11 Telerik.Web.UI.RadComboBoxItem 60
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i12 Telerik.Web.UI.RadComboBoxItem 64
ctl00$ctl00$ContentPlaceHolder1$SkinChooser$i13 Telerik.Web.UI.RadComboBoxItem 68
You see that RadSkinManager viewstate is 0 but some SkinChooser comboboxes. Why is that?
<telerik:RadComboBox ID="RadComboReports" runat="server" AllowCustomText="true" EmptyMessage="-- Select Report --" Height="300px" ShowToggleImage="True" Skin="Default" Width="275px"> <ItemTemplate> <div id="div1"> <telerik:RadTreeView ID="RadTreeViewCustSupportReports" runat="server" OnNodeClick="RadTreeViewCustSupportReports_NodeClick" Skin="Vista" Width="100%"> <Nodes> <telerik:RadTreeNode runat="server" ImageUrl="~/Images/chart_pie.png" Text="Avg Response Time" Value="~/Internal/Dashboard/Reports/CSMD_Average_Response_Time.ascx"> </telerik:RadTreeNode> <telerik:RadTreeNode runat="server" ImageUrl="~/Images/chart_pie.png" Text="Avg Resolution Time Frontline" Value="~/Internal/Dashboard/Reports/CSMD_Average_Resolution_Time_FL.ascx"><asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="false"> <ContentTemplate> <Martinbeeby:RadDockLayoutNew ID="RadDockLayout1" runat="server" OnLoadDockLayout="RadDockLayout1_LoadDockLayout" OnSaveDockLayout="RadDockLayout1_SaveDockLayout"> <table style="width: 100%; padding-top: 4px;" cellpadding="0" cellspacing="0" border="0"> <tr align="left" style="padding-bottom: 0px; padding-top: 0px; padding-left: 0px; padding-right: 0px;"> <td style="vertical-align: top; width: 267px; padding-left: 0px; padding-right: 0px;"> <Martinbeeby:RadDockZoneNew ID="RadDockZone1" runat="server" MinHeight="500px" Width="267px" BorderStyle="None">AsyncPostBackTrigger:
</Martinbeeby:RadDockLayoutNew> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="RadTreeViewCustSupportReports" EventName="NodeClick" /> </Triggers> </asp:UpdatePanel><Columns> <telerik:GridClientSelectColumn UniqueName="column1"> </telerik:GridClientSelectColumn> <telerik:GridTemplateColumn UniqueName="TemplateColumn"> <ItemTemplate> <asp:Image ID="okimg" BorderWidth="0px" ImageUrl="hinh/MailFlagRed.png" Style="float: right; cursor: pointer;" runat="server"> </asp:Image> </ItemTemplate> </telerik:GridTemplateColumn> </Columns><telerik:radgrid runat="server" DataSourceID="dsFindNavCustomers" GridLines="None" ID="grdCustomers" AutoGenerateColumns="False" AllowPaging="True" AllowSorting="True" PageSize="15" AllowFilteringByColumn="True" CellSpacing="0"> <PagerStyle Mode="Slider" /> <FilterItemStyle HorizontalAlign="Left" /> <MasterTableView datasourceid="dsFindNavCustomers" nomasterrecordstext="There are no customers matching your filters."> <Columns> <telerik:GridTemplateColumn DataField="No." HeaderText="Customer No." UniqueName="CustomerNo"> <ItemTemplate> <asp:Label ID="lblCustomerNo" runat="server" Text='<%# Container.DataItem("No.") %>'></asp:Label> </ItemTemplate> <HeaderStyle Font-Bold="True" Font-Italic="False" Font-Overline="False" HorizontalAlign="Left" Font-Strikeout="False" Font-Underline="False" Width="100px" Wrap="True" /> <ItemStyle HorizontalAlign="Left" /> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn DataField="Name" HeaderText="Customer Name" FilterControlWidth="120px" UniqueName="Name"> <ItemTemplate> <asp:Label ID="lblCustomerName" runat="server" Text='<%# Eval("Name") %>'></asp:Label> <asp:Label ID="lblCompanyName" runat="server" Text='<%# Eval("Company Name") %>' Visible="False"></asp:Label> </ItemTemplate> <HeaderStyle Font-Bold="True" Font-Italic="False" Font-Overline="False" HorizontalAlign="Left" Font-Strikeout="False" Font-Underline="False" Width="200px" Wrap="True" /> <ItemStyle HorizontalAlign="Left" /> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn DataField="Contact" HeaderText="Contact Name" FilterControlWidth="120px" UniqueName="Contact"> <ItemTemplate> <asp:Label ID="lblContactPersonName" runat="server" Text='<%# Eval("Contact") %>'></asp:Label> </ItemTemplate> <HeaderStyle Font-Bold="True" Font-Italic="False" Font-Overline="False" HorizontalAlign="Left" Font-Strikeout="False" Font-Underline="False" Wrap="True" /> <ItemStyle HorizontalAlign="Left" /> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn DataField="City" HeaderText="Bill-to City" FilterControlWidth="110px" UniqueName="City"> <ItemTemplate> <asp:Label ID="lblCustomerCity" runat="server" Text='<%# Eval("City") %>'></asp:Label> </ItemTemplate> <HeaderStyle Font-Bold="True" Font-Italic="False" Font-Overline="False" HorizontalAlign="Left" Font-Strikeout="False" Font-Underline="False" Width="125px" Wrap="True" /> <ItemStyle HorizontalAlign="Left" /> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn DataField="State" HeaderText="Bill-to State" FilterControlWidth="50px" UniqueName="State"> <ItemTemplate> <asp:Label ID="lblCustomerState" runat="server" Text='<%# Eval("State") %>'></asp:Label> </ItemTemplate> <HeaderStyle Font-Bold="True" Font-Italic="False" Font-Overline="False" HorizontalAlign="Left" Font-Strikeout="False" Font-Underline="False" Width="65px" Wrap="True" /> <ItemStyle HorizontalAlign="Left" /> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn UniqueName="select"> <ItemTemplate> <asp:LinkButton ID="btnSelectCustomer" runat="server" CausesValidation="false" CommandName="Select" Text="Select"></asp:LinkButton> </ItemTemplate> <HeaderStyle Width="40px" Font-Bold="True" Font-Italic="False" HorizontalAlign="Left" Font-Overline="False" Font-Strikeout="False" Font-Underline="False" Wrap="True" /> <FilterTemplate> </FilterTemplate> <ItemStyle HorizontalAlign="Center" /> </telerik:GridTemplateColumn> </Columns> </MasterTableView> <clientsettings> <selecting enabledragtoselectrows="False" /> </clientsettings> </telerik:radgrid>Hello,
Every created appointment, there is gape in Appointment Scheduler slot. It is not show the full color in that appointment slot and it remain some space. It created a lot of problem when we try to manipulate lunch and block time. It created appointment in remaining gape area. It should not occurred this type of gape.
Also, I attached the related file of this problem.
Please help me as soon as possible.
Thanks
Best Regards
Mutum Jiten Singh