I'm using a slider with a tab control inside the slider, and i'd like to turn off the 1px border that runs along the top of the slider, but keep the side and bottom borders. thanks!
Hello,
I'm following this sample to have the excel-like filtering on my grid view. I'm wondering if I could hide some options in the herder context menu like Group By, Ungroup, and Columns.
Is there a way?
Thanks,
Brew

Hello,
I have a problem with display and filter by date on the grid (using ajax).
Example:
http://demos.telerik.com/aspnet-mvc/grid/remote-data-binding
My timezone is UTC + 01:00.
If i change timezone on my notebook (-05:00, -08:00, +04:00, +06:00, etc.), all the dates change, and if I filter by date, return ​no data.
I find solution, but it doesn't work well:
http://www.telerik.com/support/code-library/using-utc-time-on-both-client-and-server-sides
Regardless of the change timezone, I need same date (display and filter).
Best regards
<telerik:RadWindowManager ReloadOnShow="false" ID="RadWindowManager1" runat="server" EnableShadow="true" style="direction: rtl" EnableViewState="false"> <Windows> <telerik:RadWindow ID="RadWindowPopup" VisibleOnPageLoad="false" EnableShadow="true" Behaviors="Close" AutoSize="false" Height="180" Width="330" runat="server" style="direction: rtl" CenterIfModal="false" Modal="true" CssClass="radwindowpopup" VisibleStatusbar="false" > <ContentTemplate > <div class="popup"> <div class="popup_l"> <div ID="PopupIcon" runat="server"></div> </div> <div class="popup_r" > <asp:Literal ID="UserMessage" runat="server" > Message </asp:Literal> </div><br></br> <div class="clear popup_button"> <asp:Button ID="Button" runat="server" Text="OK" /> </div> </div> </ContentTemplate> </telerik:RadWindow> </Windows> </telerik:RadWindowManager>Dim script As String = "function f(){$find(""" + RadWindowPopup.ClientID + """).show(); Sys.Application.remove_load(f);}Sys.Application.add_load(f);" ScriptManager.RegisterStartupScript(Page, Page.GetType(), "key", script, True)