3

In jQuery dialog there is textbox containing variable length text ... I want to textview to adjust it's width within Dialog box (Scroller is displayed if textbox exceeds width of dialog and I don't want that scroller).. Text should be adjusted within textbox (there should not be any scroller) (Height problem)...

1
  • 1
    could you give us some of your source or a jsfiddle for this? Commented Jun 15, 2012 at 1:38

1 Answer 1

0

I believe this answers your question:
Automatically resize jQuery UI dialog to the width of the content loaded by ajax

$(".mydialog").dialog({
    autoOpen: false,
    resizable: false,
    modal: true,
    width:'auto'
});
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.