Here's my current code:

$("#DialogScroll").dialog({
                bgiframe: true,
                autoOpen: false,
                maxHeight: 600,
                width: 550,
                modal: true,
                resizable: false,
                open: function (type, data) {
                    $(this).parent().appendTo("form");
                },
                close: function () { }
            });

maxHeight works great in Firefox, Chrome, etc. as expected, but IE 7 obviously has a problem with it. Does anyone have any idea how to get the UI dialog to use maxHeight in IE?

<div id="DialogScroll" class="dialog" style="display:none; ">
        <table>
            <thead>
                <tr>
                    <th>
                        State Code
                    </th>
                    <th>
                        State Name
                    </th>
                </tr>
            </thead>
            <tbody>
                <asp:Literal ID="litStates" runat="server" />
            </tbody>
        </table>
    </div>
link|improve this question

What is the problem, exactly? (I'm assuming it can be bigger than its maxHeight, but I want to make sure.) Can you also paste #DialogScroll so we can see it here? Thanks. – JasCav Dec 21 '10 at 22:38
Added the Dialog box's contents. What's happening is that maxHeight is set at 600 and the whitespace is all gone, which is great, but I can actually set the table (it's part of the jQuery datatables plugin) to show more records. Let's say 50. That extends past the maxHeight in IE. – jlrolin Dec 22 '10 at 14:04
feedback

1 Answer

up vote 3 down vote accepted

Looks like it is a long standing open jQueryUI bug - at this link there's a work-around and a patch listed in the comments.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.