id summary reporter owner description type status priority milestone component version resolution keywords cc 8107 Radio buttons on dialogs cause an error in IE quirks mode Teresa Monahan "To reproduce add a radio button element to any dialog e.g. {{{ { type : 'radio', id : 'type', required : true, 'default' : 'one', items : [ [ 'Radio1', 'one' ], [ 'Radio2', 'two' ] ] } }}} Load the page in IE in quirks mode and open the dialog. '''Problem:''' The browser throws the following error: {{{ 'children[...].align' is null or not an object }}} This error can be traced back to line 2538 of plugins/dialog/plugin.js: {{{ // In IE Quirks alignment has to be done on table cells. (#7324) if ( CKEDITOR.env.ie && CKEDITOR.env.quirks && children[ i ].align ) }}} " Bug closed Normal UI : Dialogs 3.6.1 fixed IE IBM Damian Satya Minnekanti