Hi
We have a page using a Prometheus RadAjaxManager control. In simple terms it looks like this:
At certain times controlOne and controlTwo may be hidden and only controlThree shown. However when controlThree makes a callback we get the following JS alert message:
Sys.InvalidOperationException: Could not find UpdatePanel with ID 'controlOnePanel'. If it is being updated dynamically then it must be inside another UpdatePanel.
Any advice appreciated, thanks.
Andrew
We have a page using a Prometheus RadAjaxManager control. In simple terms it looks like this:
| <RadAjaxManager> | |
| <AjaxSettings> | |
| <AjaxSetting AjaxControlID="controlOne"> | |
| <UpdatedControls> | |
| <AjaxUpdatedControl ControlID="controlOne" /> | |
| <AjaxUpdatedControl ControlID="controlTwo" /> | |
| </UpdatedControls> | |
| </AjaxSetting> | |
| <AjaxSetting AjaxControlID="controlTwo"> | |
| <UpdatedControls> | |
| <AjaxUpdatedControl ControlID="controlOne" /> | |
| <AjaxUpdatedControl ControlID="controlTwo" /> | |
| </UpdatedControls> | |
| </AjaxSetting> | |
| <AjaxSetting AjaxControlID="controlThree"> | |
| <UpdatedControls> | |
| <AjaxUpdatedControl ControlID="controlThree" /> | |
| </UpdatedControls> | |
| </AjaxSetting> | |
| </AjaxSettings> | |
| </RadAjaxManager> |
At certain times controlOne and controlTwo may be hidden and only controlThree shown. However when controlThree makes a callback we get the following JS alert message:
Sys.InvalidOperationException: Could not find UpdatePanel with ID 'controlOnePanel'. If it is being updated dynamically then it must be inside another UpdatePanel.
Any advice appreciated, thanks.
Andrew