when i am showing my dialog then my dialog height is 100 and width is 100 like
$("#dialog").dialog({
autoOpen: true,
height: 100,
width: 100,
modal: false,
draggable: false,
resizable: false,
});
and loading data in background and when data is fully loaded because jquery ajax has success option and from there we can determine data is loaded then i will show those data into my dialog. suppose the data which i want to show into dialog that data need more space like height should be 300 and width should be 300. so when i will pace that big data into dialog then dialog will be re-size automatically or not?
if not then how can i programatically increase dialog height and width some effect like gradually height and width will increase and data will appear into dialog with fadein effect....how to achieve it. need help with some code. thanks
{height: 400px, width: 200px}
by{height: '410px', width: '210px'}
. – Liquid