2nd post regarding the radCombo. One of the things I did with the non-prometheus version was to disable the combo in client side code. If I do this with the new prometheus version, I get an exception thrown in the client side script. Below this message is an example.
With the sample below, the combo is initially enabled. After resizing the radwindow, the combo is disabled. Moving the mouse over the combo throws a "Value must be a DOM element" exception.
I'm on IE7 on Windows XP (the code seems to be within a check for internet explorer)
Regards
Bobby
<%
@ Page Language="VB" AutoEventWireup="true" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<%
@ Register Assembly="RadComboBox.Net2" Namespace="Telerik.WebControls" TagPrefix="radC" %>
<%
@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head runat="server">
<title>Untitled Page</title>
</
head>
<
body>
<
script language="javascript" type="text/javascript" >
function
OnClientResize(sender, eventArgs)
{
RadComboBox1.Disable()
}
</
script>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<radC:RadComboBox ID="RadComboBox1" runat="server" SkinsPath="~/RadControls/ComboBox/Skins" ZIndex="90000"
Width="150px">
<Items>
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem1" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem2" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem3" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem4" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem5" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem6" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem7" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem8" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem9" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem10" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem11" />
</Items>
</radC:RadComboBox>
<div>
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" OnClientResize="OnClientResize" VisibleOnPageLoad="True">
<Windows>
<telerik:RadWindow runat="server" Animation="None" Behavior="Default" Behaviors="Default"
InitialBehavior="None" InitialBehaviors="None" Left="" NavigateUrl="" Style="display: none;"
Top="">
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
</div>
</form>
</
body>
</
html>
