Can't access flyout menus in Rich Text editor if the field is on a popup (IE 11 only)

David - I ran into the same issue and delved into the cke editor link you posted above. In one of the comments I found the following solution, which seems to fix things when added as an inline javascript resource:


skuid&#46;$&#46;widget( "ui&#46;dialog", skuid&#46;$&#46;ui&#46;dialog, {<br /><br />&nbsp;/*! jQuery UI - v1&#46;11&#46;4 - 2015-06-05<br /><br />&nbsp; *&nbsp; <a href="http://bugs.jqueryui.com/ticket/9087#comment:27" rel="nofollow" target="_blank" title="Link http//bugsjqueryuicom/ticket/9087comment27">http:&#47;&#47;bugs&#46;jqueryui&#46;com/ticket/9087#comment:27</a> - bugfix<br /><br />&nbsp; *&nbsp; <a href="http://bugs.jqueryui.com/ticket/4727#comment:23" rel="nofollow" target="_blank" title="Link http//bugsjqueryuicom/ticket/4727comment23">http:&#47;&#47;bugs&#46;jqueryui&#46;com/ticket/4727#comment:23</a> - bugfix<br /><br />&nbsp; *&nbsp; allowInteraction fix to accommodate windowed editors<br /><br />&nbsp; */<br /><br />&nbsp; _allowInteraction: function( event ) {<br /><br />&nbsp;&nbsp;&nbsp; if ( this&#46;_super( event ) ) {<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return true;<br /><br />&nbsp;&nbsp;&nbsp; }<br /><br /><br />&nbsp;&nbsp;&nbsp; &#47;&#47; address interaction issues with general iframes with the dialog<br /><br />&nbsp;&nbsp;&nbsp; if ( event&#46;target&#46;ownerDocument != this&#46;document[ 0 ] ) {<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return true;<br /><br />&nbsp;&nbsp;&nbsp; }<br /><br /><br />&nbsp;&nbsp;&nbsp; &#47;&#47; address interaction issues with dialog window<br /><br />&nbsp;&nbsp;&nbsp; if ( skuid&#46;$( event&#46;target )&#46;closest( "&#46;cke_dialog" )&#46;length ) {<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return true;<br /><br />&nbsp;&nbsp;&nbsp; }<br /><br /><br />&nbsp;&nbsp;&nbsp; &#47;&#47; address interaction issues with iframe based drop downs in IE<br /><br />&nbsp;&nbsp;&nbsp; if ( skuid&#46;$( event&#46;target )&#46;closest( "&#46;cke" )&#46;length ) {<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return true;<br /><br />&nbsp;&nbsp;&nbsp; }<br /><br />&nbsp; }<br /><br />});