add a Modal Popup Extender to my form. It all looks good and compile
and runs, except the extender does not show up on the page. Is there a
conflict between the tow libraries? Below is my aspx page...
Thanks
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="AdminWeb.aspx.cs" Inherits="AdminWeb" %>
<%@ Register Assembly="AjaxControlToolkit"
Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Assembly="Infragistics2.WebUI.Misc.v7.3,
Version=7.3.20073.38, Culture=neutral,
PublicKeyToken=7dd5c3163f2cd0cb"
Namespace="Infragistics.WebUI.Misc" TagPrefix="igmisc" %>
<%@ Register Assembly="Infragistics2.WebUI.UltraWebNavigator.v7.3,
Version=7.3.20073.38,
Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"
Namespace="Infragistics.WebUI.UltraWebNavigator"
TagPrefix="ignav" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>EZ-EM Admin Web - Report/Chart</title>
<script id="igClientScript" type="text/javascript"></script>
<script type="text/javascript"src="AdminWeb.js"></script>
<script type="text/javascript"src="ModalFunctions.js"></script>
<script type="text/javascript"src="TreeOpenClose.js"></script>
<link href="AdminWeb.css" rel="stylesheet" type="text/css" />
</head>
<!-- onsubmit="return DontSubmit()" -->
<body style="font-size: 9pt; font-family : MS Sans Serif; color:
white; background-color: #1f3780;">
<form method="post" id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:Panel id="PanelHeader" runat="server" Width="1024px"
BackColor="LightSkyBlue">
<asp:Literal id="LiteralHeader" runat="server" Text="IRiS
Stuff"></asp:Literal>
</asp:Panel>
<asp:Panel id="PanelInjectorSelectorMenu" runat="server"
Width="1080px">
<asp:Table ID="TableInjectorSelectorMenu" runat="server">
<asp:TableRow ID="RowInjectorSelectorMenuRow"
runat="server">
<asp:TableCell ID="CellInjSelect" runat="server">
<asp:Panel ID="InjSelectPanel" runat="server">
</asp:Panel>
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</asp:Panel>
<asp:Panel id="PanelContent" runat="server" Height="914px"
Width="1080px">
<asp:Table id="TableContent" runat="server">
<asp:TableRow ID="ContentRow" runat="server">
<asp:TableCell ID="CellChartSelector" runat="server">
<asp:Panel ID="ChartSelectPanel" runat="server">
</asp:Panel>
</asp:TableCell>
<asp:TableCell ID="CellContent" VerticalAlign="Top"
runat="server">
<asp:Panel ID="ContentPanel" runat="server">
</asp:Panel>
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</asp:Panel>
<asp:Button ID="ModalOKButton" runat="server"
Text="Button" Visible="false" />
<asp:Button ID="ModalCancelButton" runat="server"
Text="Button" Visible="false" />
<asp:Button ID="ModalHiddenButton" runat="server"
Text="Button" Visible="false" />
<asp:Panel ID="ModalPanel" runat="server"
CssClass="modalPopup" Style="display: none" >
</asp:Panel>
<cc1:ModalPopupExtender
ID="ModalPopup"
BehaviorID="ModalPopup"
runat="server"
BackgroundCssClass="modalBackground"
CancelControlID="ModalCancelButton"
OkControlID="ModalOKButton"
TargetControlID="ModalHiddenButton"
PopupControlID="ModalPanel"
OnOkScript="ModalOK()"
OnCancelScript="ModalCancel()"
DropShadow="true" >
</cc1:ModalPopupExtender>
</form>
</body>
</html>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ajax.NET Professional" group.
To post to this group, send email to ajaxpro@googlegroups.com
To unsubscribe from this group, send email to ajaxpro-unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/ajaxpro
The latest downloads of Ajax.NET Professional can be found at http://www.ajaxpro.info/
Don't forget to read my blog at http://weblogs.asp.net/mschwarz/
The open source project is now located at
http://www.codeplex.com/Wiki/View.aspx?ProjectName=AjaxPro
-~----------~----~----~----~------~----~------~--~---
No comments:
Post a Comment