Posted on Sunday, June 5, 2011 Resizing interactive report column dropdown list Category APEX and jQuery Sometimes you might have problem that column value is long and do not show completely when you open IR column dropdown to filter with values. For workaround you can add feature that end user can change dropdown width using jQuery resizable. Add to page JavaScripts: $(function(){ $("#apexir_rollover").resizable({ minWidth:$("#apexir_rollover").width(), handles:"e", start:function(e,u){ document.body.onclick=""; },stop:function(e,u){ $(this).css({"height":""}); setTimeout(function(){ document.body.onclick=gReport.dialog.check; },100); } }) .css({"z-index":9999}) .children(".ui-resizable-e").css({"background":"#EFEFEF"}); }); Now when you click interactive report header and move mouse to dropdown edge, you can drag it wider. Updated 30.09.2011 If you have problems you can not resize dropdown, check your page template have doctype. See OTN forum thread: Interactive Reports - Width of column heading filter dialogue.