I have been trying to use jquery ui dialog. But I m not able to set the minimum width and height. Here is my code
var options={
modal: true,
title:headertext,
minHeight:125,
minWidth:520,
maxWidth:1000,
maxHeight:1000,
dialogClass:"sfFormwrapper"};
$('#'+popupid ).dialog(options);
But in the browser it is rendered as
height:auto ; width:520px
Thanks!