This is a migrated thread and some comments may be shown as answers.

RadDateTimePicker Button Images Not Showing

3 Answers 119 Views
Input
This is a migrated thread and some comments may be shown as answers.
Don
Top achievements
Rank 1
Don asked on 02 Aug 2011, 03:49 PM
I have a RadDateTimePicker that is hidden when the page is loaded but if the user selects a specific type of field to search against it then gets shown. When the control gets shown, the buttons for the date and time popups do not show. Weird thing is that if I put a seperate RadDateTimePicker control on the page they do show. This is a control that is hosted on a content page in case that would matter.

<telerik:RadDateTimePicker ID="SearchValueDate" runat="server" Calendar-ShowRowHeaders="false" Visible="false" TabIndex="4" >
</telerik:RadDateTimePicker>


if (ddlSearchCriteria.SelectedValue == FilterOperator.DateOnlyRange.ToString()
    || ddlSearchCriteria.SelectedValue == FilterOperator.DateTimeRange.ToString())
{
    lblStart.Text = GetString("CustomSearch.lblStart.StartDate.Text");
    lblEnd.Text = GetString("CustomSearch.lblEnd.EndDate.Text");
    lblStart.Visible = true;
    lblEnd.Visible = true;
    SearchValueDateEnd.Visible = true;
}

pretty straight forward stuff so I'm not sure where this is broken. Is there anything else I need to do to make this happen?

Don

3 Answers, 1 is accepted

Sort by
0
Maria Ilieva
Telerik team
answered on 05 Aug 2011, 09:50 AM
Hello Don,

Could you  please let me know if you are using Ajax into your application to ajaxify the problematic controls which visibility is dynamically changed. If yes please set the EnableAjaxSkinRendering property of those controls to true in the PageLoad on the server side.


Kind regards,
Maria Ilieva
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

0
Don
Top achievements
Rank 1
answered on 05 Aug 2011, 08:39 PM
We are using Ajax but not specifically on those controls. I tried the suggestions anyways but it did not seem to have any effect. 
0
Maria Ilieva
Telerik team
answered on 09 Aug 2011, 12:18 PM
Hi Don,

As the provided approach does not help it will be best to open a regular support ticket and send us runnable version of your application which demonstrates the described behaviour. Thus we will be able to test it locally and advise you further.

All the best,
Maria Ilieva
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Input
Asked by
Don
Top achievements
Rank 1
Answers by
Maria Ilieva
Telerik team
Don
Top achievements
Rank 1
Share this question
or