I have a page with a header menu, left column, splitter, right column. The right column is showing different pages, dependent on menu item selections, using AJAX to change the NavigateURL in the right splitter pane.
Whenever the page in the right pane contains a ComboBox and then AJAX is used to change the right pane to a page that does not use a combobox the javascript DOM is corrupted. When the page is subsequently refreshed by pressing F5, or clicking a menu item that causes a full page postback, a javascript error is thrown in the following function of the ComboBox 'unexpected call to property or method':
This problem occurs in IE7 and IE8 but not Firefox.
Do you know of any workaround or fix for this problem?
Whenever the page in the right pane contains a ComboBox and then AJAX is used to change the right pane to a page that does not use a combobox the javascript DOM is corrupted. When the page is subsequently refreshed by pressing F5, or clicking a menu item that causes a full page postback, a javascript error is thrown in the following function of the ComboBox 'unexpected call to property or method':
| _removeDropDown:function(){var b=this.get_dropDownElement().parentNode; |
| b.parentNode.removeChild(b); |
This problem occurs in IE7 and IE8 but not Firefox.
Do you know of any workaround or fix for this problem?