Welcome Guest Search | Active Topics | Sign In | Register

DatePicker is enabled when parent container is disabled Options
Philipp Jenni
Posted: Thursday, December 24, 2015 10:14:29 AM
Rank: Advanced Member
Groups: Member

Joined: 6/9/2007
Posts: 98
If the parent container (eg. asp:panel) is disabled, the datePicker is enabled. The IsEnabled Property is correct set.

Here an example to reproduce.

Code: HTML/ASPX
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Blank.aspx.cs" Inherits="JNetwork.WebAppBase.Blank" %>

<%@ Register Assembly="EO.Web" Namespace="EO.Web" TagPrefix="eo" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <%--Control is not disabled--%>
            <asp:Panel ID="pPanel" runat="server" Enabled="false">
                <eo:DatePicker ID="dpDate" runat="server" />
            </asp:Panel>
            <%--Control is disabled--%>
            <eo:DatePicker ID="dpDatePicker" runat="server" Enabled="false" />
        </div>
    </form>
</body>
</html>


Can you fix this?
eo_support
Posted: Thursday, December 24, 2015 3:01:03 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,229
Thanks for the info. This will be fixed in our next build.


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.