Hi, I have the following WebNumericEdit, which has been placed in a WebDialogWindow.
<igtxt:WebNumericEdit ID="WebNumericEditIncrementar" Nullable="false" NullText="0" runat="server" Width="50px" CssClass="ctrlStyles" MinDecimalPlaces="Two" Enabled="false"></igtxt:WebNumericEdit>
The WebNumericEdit is disabled (Enabled="false"). When I click on the WebNumericEdit it produces the following error.
This error is in IE7Line: 5950Character: 20Error: Sys.ArgumentException: Value must be a DOM element. Parameter name: elementCode: 0
This error is in IE8 beta 2
Line: 5948Error: Sys.ArgumentException: Value must be a DOM element.Parameter name: element
Hi,
Unfortunately I could not reproduce that. I tested following
<form id="form1" runat="server"><asp:ScriptManager runat="server" ID="ScriptManager1" /><ig:WebDialogWindow ID="WebDialogWindow1" runat="server" Height="150px" Width="300px"> <ContentPane> <Template> <igtxt:WebNumericEdit ID="WebNumericEditIncrementar" Nullable="false" NullText="0" runat="server" Width="50px" CssClass="ctrlStyles" MinDecimalPlaces="Two" Enabled="false"> </igtxt:WebNumericEdit> </Template> </ContentPane></ig:WebDialogWindow></form>