c# - Make the popup modal window Scrollable in JQuery -


i need make popup window using jquery scrollable. tell me please did miss in following code

$("#dvenglish").dialog({ modal: true, width: '1300px', draggable: true, autoopen: false }); 

the html is:

<div title="search english" id="dvenglish">         <uc1:englishpopup id="englishpopup1" runat="server" /> </div> 

the question has been updated. in advance

from documentation:

if content length exceeds maximum height, scrollbar automatically appear.

so pass in maxheight , make sure have enough content cause need scroll bars.

$("#dvenglish").dialog({ modal: true, maxheight: 500px, width: '1300px', draggable: true, autoopen: false }); 

by way, idea check documentation before coming stack overflow.


Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -