when i show 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 load the data in the background and when the data is fully loaded, since jquery ajax has a successful option, and from there we can determine that the data is loaded, then I will show this data in my dialog box. suppose the data that I want to show in the dialog box so that the data needs more space, such as height, should be 300 and the width should be 300. Therefore, when I go to big data in the dialog box, the dialog will be automatically changed or not?
If not, how can I programmatically increase the height and width of the dialog box, for example, the height and width gradually increase, and the data will appear in the dialog box with the fadein effect .... how to do it. need help with some code. thanks
source share