I skipped Logincontrols in rfd like this:
<telerik:RadFormDecorator ID="RadFormDecorator1" Skin="Default" Visible="true" DecoratedControls="All" ControlsToSkip="LoginControls,Buttons" EnableRoundedCorners="false" runat="server" />
but they are styled with rfd:
<table id="cph_content_Login1" class="rfdLoginControl" style="width:100%;border-collapse:collapse;" cellspacing="0" cellpadding="0">
What's wrong here?
Marc

Hello, I am using code like so to populate a RadAutoCompleteBox in ASP.NET:
RadAutoCompleteBoxNextID.Entries.Add(new AutoCompleteBoxEntry { Text = "ABC" });RadAutoCompleteBoxNextID.Entries.Add(new AutoCompleteBoxEntry { Text = "DEF" });
RadAutoCompleteBoxNextID.Entries.Add(new AutoCompleteBoxEntry { Text = "GHI" });
How do I display a default value of "ABC" -- which is the first item in the Entries list -- in the AutoCompleteBox?
Hello,
if I press the edit button and the form template comes up modal the entry in the grid looks strange. See attachement.
Best, Rainer

sometimes when i clicked the search,always showed the circle.
Can you help me why Thanks.

My overall goal is to use a raddatepicker where weekend days and federal holidays are disabled. On PageLoad, the date picker is populated with a date which could be as far as 5 years in the future.
So far I have implemented the solution given by Eyup in this thread and get the almost desired result with OnDayRender.
However, by doing this, when i click on the calendar icon to show the calendar popup, it does a full post back. My understand is because the calendar popup wrapper is outside my ajax panel, right under the <body>.
How can i force the calendar popup wrapper to be created in my ajax panel?
Thank you
Gregory

Hi guys,
Thanks for your support in advance,
I have a user control, which has ajax in it for some dropdownlists. it works fine, but when I add a Radgrid into that page, the new grid doesn't work, maybe I miss to set the ajax settings for the grid.

Hello
Please I need help ,first I am not an expert in Telerik tools , As you can see in the attachments I have radgrid when User click grid row (context menu 1) appear when user click Emplyee from cntx1 (Context menu 2) appear and (context menu 1) hide , when user click command from cntx2 call server side method and pass cntx1 & cntxt2 selected values.
thank you

I define a DropDownTree in RadAjaxPanel with LoadingPanel.
I open the DropDownTree and use keyborad ↑↓ to find a item, then I press enter key to select some one.
It will trigger Infinite loading.
(Mouse operation is working fine, but keyborad doesn't work.)
Can anyone help? THX~
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="LoadingPanel1">
<telerik:RadDropDownTree RenderMode="Lightweight" ID="rddtCustomer" runat="server" Width="300px" Skin="Default" AutoPostBack="true" EnableFiltering="true" OnEntryAdded="rddtCustomer_EntryAdded" ></telerik:RadDropDownTree>
</telerik:RadAjaxPanel>
I have a page with an AjaxPanel which refreshes (by calling ajaxRequestWithTarget) every 60 seconds through JS timeout.
I have a separate interface which uses javascript page-scope variables which resets to blank/undefined when ajaxRequestWithTarget was called?