Could not find UpdatePanel with ID 'xxx'. If it is being updated dynamically then it must be inside another UpdatePanel

前端 未结 10 1479
终归单人心
终归单人心 2021-02-05 10:08

I have a page with Ajax Tab controls, within one of the tabs is a webcontrol that as a Telerik RadGrid, with Edit forms pointing to another web control. That edit form also cont

10条回答
  •  一生所求
    2021-02-05 10:20

    I resolved the issue by removing the UpdatePanel on the initial tab that contained the WebControl. I'm not clear on why this should have caused the issue though so if anyone can explain that, I'd be interested to find out.

    So, for example, I originally had this:

    
         
               Manage Prioritys
               
                     
                       
                          
                       
                     
                
          
    

    And I changed it to:

    
         
               Manage Prioritys
               
    
                          
    
                
          
    

    And that resolved the script error coming out of the user control which also contained ajax tabs and a modal popup.

提交回复
热议问题