|
Rank: Advanced Member Groups: Member
Joined: 9/4/2007 Posts: 114
|
Starting with the 2008.0.31 build, the below script error is generated when using the AJAX MaskedEditExtender on a page with a dialog.
We have verified there are not two controls of the same name. We rolled back to the 2008.0.25 build and it does not generate this error.
FYI, Duane
Microsoft JScript runtime error: Sys.InvalidOperationException: Two components with the same id 'ctl00_ContentPlaceHolder1_ApproveDialog_ctl00_ListLimitTextBox_MaskedEditExtender' can't be added to the application.
|
|
Rank: Advanced Member Groups: Member
Joined: 9/4/2007 Posts: 114
|
correction,, this started with the 2008.0.30 build....
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,200
|
Thanks. We will take a look and let you know what we find!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,200
|
This issue is has been partialy addressed in build 2008.0.35. Now it should work as long as the dialog is not placed inside a positioned element. For example, the following code will continue to trigger this error:
Code: HTML/ASPX
<div style="position:absolute" ...>
<eo:Dialog ....>
....
</eo:Dialog>
</div>
Thanks
|
|