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

RadDatePicker PopUp Position

22 Answers 505 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Craig
Top achievements
Rank 1
Craig asked on 14 Oct 2010, 11:57 AM
Can anyone suggest a solution to our problem?

We have a number of nested container divs set at 100% height. This is causing the popup from the RadDatePicker to be positioned incorrectly at the top of the page or sometimes off the screen.

22 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 14 Oct 2010, 12:05 PM
Hello,


Have you set EnableScreenBoundaryDetection property? Could you try setting the EnableScreenBoundaryDetection property to false and see whether its working fine?


-Shinu.
0
Craig
Top achievements
Rank 1
answered on 14 Oct 2010, 12:21 PM
Hi Shinu,

Thanks for the quick response. I've given that a try, but it makes no difference. We have tried removing the 100% height from the surrounding divs and the popups appear correctly next the the RadDatePicker, however this effects the look of our site.

I was thinking some of the telerik styles may need to be overridden but I'm unsure which styles set the position of the popup panels.
0
Dimo
Telerik team
answered on 19 Oct 2010, 09:57 AM
Hi Marin,

Can you provide a simple web page, which demonstrated the described problem?

Generally, it is possible to encounter issues if the RadDatePicker is placed inside containers with some uncommon positioning, e.g. position:fixed.

Regards,
Dimo
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Ryan
Top achievements
Rank 1
answered on 17 Apr 2012, 02:38 PM
Hello,

Did anyone solve this issue? I am having a similar problem, but from what Dimo said, there are issues with the DatePicker when placed inside containers with uncommon positioning. I am using position:absolute for a containing div. When I remove position:absolute;top:100px;left:200px;right:0px;bottom:0px;
it works fine but it messes up the layout of my page. I have tried using the EnableScreenBoundaryDetection property but it didn't do anything. 

<div style="padding:5px;position:absolute;top:100px;left:200px;right:0px;bottom:0px;overflow:auto;">
   <cc2:DTPDatePicker ID="testdatepicker" runat="server"/>
</div>

Does anyone have an idea what I can try? Also let me know what else I can provide.
0
Galin
Telerik team
answered on 20 Apr 2012, 02:23 PM
Hello Ryan,

I am afraid the issue you are facing is not replicable on our side. I am sending you my test project for your reference. Please let me know if you manage to reproduce what you are getting in this project,
and what steps to follow, so that we can test it too.


Greetings,
Galin
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Ryan
Top achievements
Rank 1
answered on 20 Apr 2012, 03:19 PM
Would it be possible to send me the sample project in framework 3.5? We currently don't use 4.0.


I did more testing with it and it seems to be an issue when the website is long enough to make the overflow effective. So try adding in line breaks before the date picker. I looks normal until you start moving the control down the page.
0
Ryan
Top achievements
Rank 1
answered on 23 Apr 2012, 03:14 PM
After several tests using what telerik reference I had, it was due to the scrolling/sizing of the div. HOWEVER, I hadn't updated the telerik controls for quite some time and once I did that it seemed to work fine. I will do more testing with the new controls but if i have anymore issues I will post again. Thanks.
0
Anand Sarigala
Top achievements
Rank 1
answered on 17 Sep 2012, 02:33 PM
I have a page with radtab control. In one of the tabs I have a functionality in which based on the selected option in the dropdown, I load panels which contain controls.  some options in the dropdown use the same panel. the problem araises here, for the first selected option, the raddatepicker shows the calender popup in the correct position, but not for the options selected afterwards which also use the same panel. I tried positioning the calender popup using code provided in forums, but there is no change in behaviour. can anybody help.
0
Galin
Telerik team
answered on 20 Sep 2012, 03:43 PM
Hi Anand,

Тhe issue you are facing is not replicable on my side. Could you please give me more details on what you are trying to achieve or possibly a small running project that I can use to reproduce the case.
Alternatively a live URL will help me as well.


Kind regards,
Galin
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Anand Sarigala
Top achievements
Rank 1
answered on 21 Sep 2012, 11:52 AM
please find the HTML code followed by C# code

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TestPrj._Default" %>
 
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager runat="server" ID="scrptCaseMgmnt">
    </asp:ScriptManager>
    <asp:UpdatePanel ID="upnlAPTPCM" runat="server" UpdateMode="Conditional">
        <ContentTemplate>
            <table style="width: 100%;" cellpadding="1" cellspacing="1" border="0" id="Table18"
                runat="server">
                <tr>
                    <td>
                        <asp:Panel ID="pnlCMSubject" runat="server" EnableViewState="true" Visible="true"
                            CssClass="panel">
                            <table style="width: 100%; table-layout: fixed" cellpadding="1" cellspacing="1" border="0"
                                id="Table1">
                                <tr>
                                    <td class="labelBold" style="width: 30%">
                                        Subject:
                                    </td>
                                    <td class="label" style="width: 50%">
                                        <telerik:RadComboBox ID="rdCmbSubject" runat="server" OnSelectedIndexChanged="rdCmbSubject_SelectedIndexChanged"
                                            AutoPostBack="True" DropDownWidth="500px" Width="100%" MaxHeight="150px" CausesValidation="false">
                                            <Items>
                                                <telerik:RadComboBoxItem runat="server" Text="Select" Value="Select" />
                                                <telerik:RadComboBoxItem runat="server" Text="DATE1" Value="DATE1" />
                                                <telerik:RadComboBoxItem runat="server" Text="DATE2" Value="DATE2" />
                                                <telerik:RadComboBoxItem runat="server" Text="NODATE1" Value="NODATE1" />
                                                <telerik:RadComboBoxItem runat="server" Text="NODATE2" Value="NODATE2" />
                                            </Items>
                                        </telerik:RadComboBox>
                                    </td>
                                    <td>
                                    </td>
                                </tr>
                            </table>
                        </asp:Panel>
                    </td>
                </tr>
                <tr>
                    <td>
                        <asp:Panel ID="pnlCMComment" runat="server" EnableViewState="true" Visible="false"
                            CssClass="panel">
                            <table style="width: 100%; table-layout: fixed" cellpadding="1" cellspacing="1" border="0"
                                id="Table2">
                                <tr>
                                    <td class="labelBold" style="width: 30%">
                                        Comment:
                                    </td>
                                    <td class="label" style="width: 50%">
                                        <asp:TextBox runat="server" ID="txtComment" onkeydown="javascript:validateME(this,'REQ')"
                                            Width="100%" Height="100px" TextMode="MultiLine" CssClass="textarea" MaxLength="1000">
                                        </asp:TextBox>
                                    </td>
                                    <td>
                                    </td>
                                </tr>
                            </table>
                        </asp:Panel>
                    </td>
                </tr>
                <tr>
                    <td>
                        <asp:Panel ID="pnlCMSpecialty" runat="server" EnableViewState="true" Visible="false"
                            CssClass="panel">
                            <table style="width: 100%; table-layout: fixed" cellpadding="1" cellspacing="1" border="0"
                                id="Table3">
                                <tr>
                                    <td class="labelBold" style="width: 30%">
                                        Specialty:
                                    </td>
                                    <td class="label" style="width: 50%">
                                        <telerik:RadComboBox ID="rdCmbSPLSpecialty" runat="server" DropDownWidth="200px"
                                            Width="200px">
                                        </telerik:RadComboBox>
                                        <asp:RequiredFieldValidator ID="RFVSPLSpecialty" runat="server" ControlToValidate="rdCmbSPLSpecialty"
                                            InitialValue="Select" ValidationGroup="btnSubmitCM">*</asp:RequiredFieldValidator>
                                    </td>
                                    <td>
                                    </td>
                                </tr>
                                <tr>
                                    <td class="labelBold" style="width: 30%">
                                        Date:
                                    </td>
                                    <td class="label" style="width: 50%">
                                        <telerik:RadDatePicker ID="rdDtSPLDate" runat="server" CssClass="labelText_xx-small"
                                            DateInput-DateFormat="MM/dd/yyyy">
                                            <DateInput ID="DateInput1" runat="server" EnableSingleInputRendering="false">
                                            </DateInput>
                                        </telerik:RadDatePicker>
                                        <asp:RequiredFieldValidator ID="RFVSPLDate" runat="server" ControlToValidate="rdDtSPLDate"
                                            InitialValue="" ValidationGroup="btnSubmitCM">*</asp:RequiredFieldValidator>
                                    </td>
                                    <td>
                                    </td>
                                </tr>
                                <tr>
                                    <td class="labelBold" style="width: 30%">
                                        Comment:
                                    </td>
                                    <td class="label" style="width: 50%">
                                        <asp:TextBox runat="server" ID="txtSPLComment" onkeydown="javascript:validateME(this,'REQ')"
                                            Width="100%" Height="100px" TextMode="MultiLine" CssClass="textarea" MaxLength="1000">
                                        </asp:TextBox>
                                    </td>
                                </tr>
                            </table>
                        </asp:Panel>
                    </td>
                </tr>
            </table>
        </ContentTemplate>
    </asp:UpdatePanel>
    </form>
</body>
</html>
 
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
using Telerik.Web.UI;
 
namespace TestPrj
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
 
        }
 
        private void ProcessControls(Control ctrlContainer)
        {
            try
            {
                foreach (Control ctrl in ctrlContainer.Controls)
                {
                    if (ctrl.GetType() == typeof(Panel))
                    {
                        ((Panel)ctrl).Visible = false;
                    }
 
                    // if a control contains sub controls, they will be processed by this recursive call
                    if (ctrl.HasControls())
                        ProcessControls(ctrl);
                }
 
            }
            catch (Exception ex)
            {
 
                 
            }
        }
 
        private void ClearCMControls(Control ctrlContainer)
        {
            try
            {
                foreach (Control ctrl in ctrlContainer.Controls)
                {
                    if (ctrl.GetType() == typeof(TextBox))
                    {
                        ((TextBox)ctrl).Text = "";
                    }
 
                    if (ctrl.GetType() == typeof(DropDownList))
                    {
                        ((DropDownList)ctrl).SelectedIndex = -1;
                    }
 
                    if (ctrl.GetType() == typeof(RadComboBox) && ctrl.ID != "rdCmbSubject")
                    {
                        ((RadComboBox)ctrl).Text = "";
                        ((RadComboBox)ctrl).SelectedIndex = -1;
                    }
 
                    if (ctrl.GetType() == typeof(RadDatePicker))
                    {
                        ((RadDatePicker)ctrl).Clear();
                    }
 
                    // if a control contains sub controls, they will be processed by this recursive call
                    if (ctrl.HasControls())
                        ClearCMControls(ctrl);
                }
 
            }
            catch (Exception ex)
            {
 
                
            }
        }
 
        protected void rdCmbSubject_SelectedIndexChanged(object o, RadComboBoxSelectedIndexChangedEventArgs e)
        {
            ClearCMControls(this);
            ProcessControls(this);
             
            pnlCMSubject.Visible = true;
 
            if (rdCmbSubject.SelectedValue.ToString() == "DATE1")
            {
                ProcessControls(this);
                pnlCMSubject.Visible = true;
                pnlCMSpecialty.Visible = true;
                return;
            }
            if (rdCmbSubject.SelectedValue.ToString() == "DATE2")
            {
                ProcessControls(this);
                pnlCMSubject.Visible = true;
                pnlCMSpecialty.Visible = true;
                return;
            }
            if (rdCmbSubject.SelectedValue.ToString() == "NODATE1")
            {
                ProcessControls(this);
                pnlCMSubject.Visible = true;
                pnlCMComment.Visible = true;
                return;
            }
            if (rdCmbSubject.SelectedValue.ToString() == "NODATE2")
            {
                ProcessControls(this);
                pnlCMSubject.Visible = true;
                pnlCMComment.Visible = true;
                return;
            }
             
        }
    }
}
0
Anand Sarigala
Top achievements
Rank 1
answered on 21 Sep 2012, 12:02 PM
please find the HTML code followed by C# Code

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TestPrj._Default" %>
 
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager runat="server" ID="scrptCaseMgmnt">
    </asp:ScriptManager>
    <asp:UpdatePanel ID="upnlAPTPCM" runat="server" UpdateMode="Conditional">
        <ContentTemplate>
            <table style="width: 100%;" cellpadding="1" cellspacing="1" border="0" id="Table18"
                runat="server">
                <tr>
                    <td>
                        <asp:Panel ID="pnlCMSubject" runat="server" EnableViewState="true" Visible="true"
                            CssClass="panel">
                            <table style="width: 100%; table-layout: fixed" cellpadding="1" cellspacing="1" border="0"
                                id="Table1">
                                <tr>
                                    <td class="labelBold" style="width: 30%">
                                        Subject:
                                    </td>
                                    <td class="label" style="width: 50%">
                                        <telerik:RadComboBox ID="rdCmbSubject" runat="server" OnSelectedIndexChanged="rdCmbSubject_SelectedIndexChanged"
                                            AutoPostBack="True" DropDownWidth="500px" Width="100%" MaxHeight="150px" CausesValidation="false">
                                            <Items>
                                                <telerik:RadComboBoxItem runat="server" Text="Select" Value="Select" />
                                                <telerik:RadComboBoxItem runat="server" Text="DATE1" Value="DATE1" />
                                                <telerik:RadComboBoxItem runat="server" Text="DATE2" Value="DATE2" />
                                                <telerik:RadComboBoxItem runat="server" Text="NODATE1" Value="NODATE1" />
                                                <telerik:RadComboBoxItem runat="server" Text="NODATE2" Value="NODATE2" />
                                            </Items>
                                        </telerik:RadComboBox>
                                    </td>
                                    <td>
                                    </td>
                                </tr>
                            </table>
                        </asp:Panel>
                    </td>
                </tr>
                <tr>
                    <td>
                        <asp:Panel ID="pnlCMComment" runat="server" EnableViewState="true" Visible="false"
                            CssClass="panel">
                            <table style="width: 100%; table-layout: fixed" cellpadding="1" cellspacing="1" border="0"
                                id="Table2">
                                <tr>
                                    <td class="labelBold" style="width: 30%">
                                        Comment:
                                    </td>
                                    <td class="label" style="width: 50%">
                                        <asp:TextBox runat="server" ID="txtComment" onkeydown="javascript:validateME(this,'REQ')"
                                            Width="100%" Height="100px" TextMode="MultiLine" CssClass="textarea" MaxLength="1000">
                                        </asp:TextBox>
                                    </td>
                                    <td>
                                    </td>
                                </tr>
                            </table>
                        </asp:Panel>
                    </td>
                </tr>
                <tr>
                    <td>
                        <asp:Panel ID="pnlCMSpecialty" runat="server" EnableViewState="true" Visible="false"
                            CssClass="panel">
                            <table style="width: 100%; table-layout: fixed" cellpadding="1" cellspacing="1" border="0"
                                id="Table3">
                                <tr>
                                    <td class="labelBold" style="width: 30%">
                                        Specialty:
                                    </td>
                                    <td class="label" style="width: 50%">
                                        <telerik:RadComboBox ID="rdCmbSPLSpecialty" runat="server" DropDownWidth="200px"
                                            Width="200px">
                                        </telerik:RadComboBox>
                                        <asp:RequiredFieldValidator ID="RFVSPLSpecialty" runat="server" ControlToValidate="rdCmbSPLSpecialty"
                                            InitialValue="Select" ValidationGroup="btnSubmitCM">*</asp:RequiredFieldValidator>
                                    </td>
                                    <td>
                                    </td>
                                </tr>
                                <tr>
                                    <td class="labelBold" style="width: 30%">
                                        Date:
                                    </td>
                                    <td class="label" style="width: 50%">
                                        <telerik:RadDatePicker ID="rdDtSPLDate" runat="server" CssClass="labelText_xx-small"
                                            DateInput-DateFormat="MM/dd/yyyy">
                                            <DateInput ID="DateInput1" runat="server" EnableSingleInputRendering="false">
                                            </DateInput>
                                        </telerik:RadDatePicker>
                                        <asp:RequiredFieldValidator ID="RFVSPLDate" runat="server" ControlToValidate="rdDtSPLDate"
                                            InitialValue="" ValidationGroup="btnSubmitCM">*</asp:RequiredFieldValidator>
                                    </td>
                                    <td>
                                    </td>
                                </tr>
                                <tr>
                                    <td class="labelBold" style="width: 30%">
                                        Comment:
                                    </td>
                                    <td class="label" style="width: 50%">
                                        <asp:TextBox runat="server" ID="txtSPLComment" onkeydown="javascript:validateME(this,'REQ')"
                                            Width="100%" Height="100px" TextMode="MultiLine" CssClass="textarea" MaxLength="1000">
                                        </asp:TextBox>
                                    </td>
                                </tr>
                            </table>
                        </asp:Panel>
                    </td>
                </tr>
            </table>
        </ContentTemplate>
    </asp:UpdatePanel>
    </form>
</body>
</html>
 
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
using Telerik.Web.UI;
 
namespace TestPrj
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
 
        }
 
        private void ProcessControls(Control ctrlContainer)
        {
            try
            {
                foreach (Control ctrl in ctrlContainer.Controls)
                {
                    if (ctrl.GetType() == typeof(Panel))
                    {
                        ((Panel)ctrl).Visible = false;
                    }
 
                    // if a control contains sub controls, they will be processed by this recursive call
                    if (ctrl.HasControls())
                        ProcessControls(ctrl);
                }
 
            }
            catch (Exception ex)
            {
 
                 
            }
        }
 
        private void ClearCMControls(Control ctrlContainer)
        {
            try
            {
                foreach (Control ctrl in ctrlContainer.Controls)
                {
                    if (ctrl.GetType() == typeof(TextBox))
                    {
                        ((TextBox)ctrl).Text = "";
                    }
 
                    if (ctrl.GetType() == typeof(DropDownList))
                    {
                        ((DropDownList)ctrl).SelectedIndex = -1;
                    }
 
                    if (ctrl.GetType() == typeof(RadComboBox) && ctrl.ID != "rdCmbSubject")
                    {
                        ((RadComboBox)ctrl).Text = "";
                        ((RadComboBox)ctrl).SelectedIndex = -1;
                    }
 
                    if (ctrl.GetType() == typeof(RadDatePicker))
                    {
                        ((RadDatePicker)ctrl).Clear();
                    }
 
                    // if a control contains sub controls, they will be processed by this recursive call
                    if (ctrl.HasControls())
                        ClearCMControls(ctrl);
                }
 
            }
            catch (Exception ex)
            {
 
                
            }
        }
 
        protected void rdCmbSubject_SelectedIndexChanged(object o, RadComboBoxSelectedIndexChangedEventArgs e)
        {
            ClearCMControls(this);
            ProcessControls(this);
             
            pnlCMSubject.Visible = true;
 
            if (rdCmbSubject.SelectedValue.ToString() == "DATE1")
            {
                ProcessControls(this);
                pnlCMSubject.Visible = true;
                pnlCMSpecialty.Visible = true;
                return;
            }
            if (rdCmbSubject.SelectedValue.ToString() == "DATE2")
            {
                ProcessControls(this);
                pnlCMSubject.Visible = true;
                pnlCMSpecialty.Visible = true;
                return;
            }
            if (rdCmbSubject.SelectedValue.ToString() == "NODATE1")
            {
                ProcessControls(this);
                pnlCMSubject.Visible = true;
                pnlCMComment.Visible = true;
                return;
            }
            if (rdCmbSubject.SelectedValue.ToString() == "NODATE2")
            {
                ProcessControls(this);
                pnlCMSubject.Visible = true;
                pnlCMComment.Visible = true;
                return;
            }
             
        }
    }
}
0
Anand Sarigala
Top achievements
Rank 1
answered on 21 Sep 2012, 12:59 PM
please check the following links for sample HTML and C# code in 4shared.com site

http://www.4shared.com/file/ggLn_4dZ/Defaultaspx.html

http://www.4shared.com/file/dWjynIMg/Defaultaspxcs.html

0
Galin
Telerik team
answered on 26 Sep 2012, 08:25 AM
Hello Anand,

I have tested your scenario and the popup is positioned correctly. For reference I am sending this video. Please let me know if I have missed something important.

I have tested in Firefox, IE 7/9, Chrome, Opera.

All the best,
Galin
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Anand Sarigala
Top achievements
Rank 1
answered on 26 Sep 2012, 11:57 AM
Thanks Galin, I realised that this problem is in IE6 only which I have in my system.
0
Galin
Telerik team
answered on 01 Oct 2012, 02:43 PM
Hello Anand,

The issue can be observed in IE6 browser. You can workaround it by using the following CSS rule
* html .rcShadTR
{
    display: none;
}

I hope this helps.

Kind regards,
Galin
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Anand Sarigala
Top achievements
Rank 1
answered on 03 Oct 2012, 09:48 AM
Hi Galin, I did the workaround you gave for IE6, but there is still a gap between calender popup and raddatepicker control. please check the screenshot attached.
0
Galin
Telerik team
answered on 08 Oct 2012, 08:43 AM
Hi Anand,

I agree, there are some additional elements, which you should hide too:

* html .rcShadTR,
* html .rcShadBL,
* html .rcShadBR
{
    display: none;
}

Also, the other option is to hide the shadow by setting the attribute EnableShadows to false.

I hope this helps.

Greetings,
Galin
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Anand Sarigala
Top achievements
Rank 1
answered on 08 Oct 2012, 11:12 AM
Thanks a lot Galin, both the options worked
0
Rainer
Top achievements
Rank 1
answered on 21 Oct 2019, 06:41 AM

Hi,

the calendar is not full shown on the RadWindow. See pic. how can I fix this?

Best, Rainer

0
Rumen
Telerik team
answered on 23 Oct 2019, 07:05 AM

Hi Rainer,

There is a demo showing how to resize RadWindow when the calendar popup shows up: https://demos.telerik.com/aspnet-ajax/window/examples/dialogreturnvalue/defaultcs.aspx. Check the autoSizeWithCalendar function in the script file.

You can also check out this forum https://www.telerik.com/forums/how-can-we-open-raddatepicker-popup-window-up-the-radwindow-popup.

Regards,
Rumen
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Zubair
Top achievements
Rank 1
Veteran
answered on 02 Jun 2020, 08:55 AM

Dear Rumen,

Please help me on below thread.

 

https://www.telerik.com/forums/raddatepicker-icon-displaying-below

0
Doncho
Telerik team
answered on 04 Jun 2020, 02:08 PM

Hi Zubair,

I have posted an answer to the forum thread. You check it out here - Raddatepicker icon displaying below

In case, any further questions on the issue pop-up, I suggest proceeding with the communication in the other thread only.

Kind regards,
Doncho
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Tags
Calendar
Asked by
Craig
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Craig
Top achievements
Rank 1
Dimo
Telerik team
Ryan
Top achievements
Rank 1
Galin
Telerik team
Anand Sarigala
Top achievements
Rank 1
Rainer
Top achievements
Rank 1
Rumen
Telerik team
Zubair
Top achievements
Rank 1
Veteran
Doncho
Telerik team
Share this question
or