up vote 1 down vote favorite
share [g+] share [fb]

Does anyone know if there is a way to disable scroll bars in the jquery dialog box? The content that I have in the div is 300 px but the dialog is set to 200px. It automatically puts the scrollbars but I do not want them. I will add it myself to the second div that makes it bigger than the window. Any help is appreciated.

link|improve this question

53% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Do you mean the jQuery UI dialog widget?

You can pass an option when you create it to specify its height, e.g.

$('.selector').dialog({ height: 350 });

Make it taller than the content you’re putting into it, and I suspect you’d be golden.

link|improve this answer
feedback

I solved the problem like this:

            .dialog({
                title: $(this).attr("data-dialog-title"),
                closeOnEscape: true,
                close: function () { $(this).remove() },
                draggable: true,
                position: 'center',
                width: 500,
                height: 'auto',
                modal: true,
                open: function (event, ui) {
                    $('#myDialogId').css('overflow', 'hidden');
                }
            })
link|improve this answer
Can you explain what you did to disable scrollbar? – masato-san Jan 26 at 5:29
feedback

I don't know exactly what you mean by a 'jquery dialog box', but the standard way to disable the scroll bars would be to set the div's overflow property to 'hidden'

put this in your css file:

div.class_name {
  overflow: hidden;
}
link|improve this answer
jquery(a javascript wrapper of sorts) has there own dialog boxes. there are options in jquery to do similar things but did not find one for this particular plugin. i cannot just set that property for jquery – ngreenwood6 Oct 25 '09 at 2:26
jquery is not a javascript wrapper, it's a framework that abstracts out cross-browser issues and simplifies DOM traversal...if you can specify what jquery function you are using to generate the 'dialog box' then i might be able to help... – Paul Woolcock Oct 26 '09 at 0:42
feedback

Your Answer

 
or
required, but never shown

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