The jQuery dialog resize dialog box hides and locks the scroll button on the scroll bar,

Maybe someone has the answer to this question.

I implemented the jQuery dialog, works fine. However, when I have too much content that launches the scroll and resize bar marker, the resize knob hides the scroll button down.

This is even on the documentation / demo site .

Is there a way to set the offset value, or is it the way it is or should be?

Greetings

EDIT: This happens in IE7, Chrome and FF4.0.1

+3
source share
2 answers

CSS, .ui-widget-content, .

+1

,

, -

// note resizable option set to false
$("#dialogDIV").dialog({ resizable:false,    your-other-options-here    });

// This should get rid of the scrollbar
$("#dialogDIV").css("height","auto");
0

All Articles