Opened 8 years ago
Closed 8 years ago
#16172 closed defect (fixed)
Dialog: resizing not correct
Reported by: | Alexander Kläser | Owned by: | bill |
---|---|---|---|
Priority: | undecided | Milestone: | 1.9 |
Component: | Dijit | Version: | 1.8.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
We encountered Problems with a custom Dialog-class inheriting from dijit.Dialog(). The content of the Dialog is dynamically updated after prompting the dialog. Calling resize() would not work correctly, as it would first reposition the dialog and then resize it. Putting it the other way round (first a call to _size() and then _position()) does the job correctly.
Change History (2)
comment:1 Changed 8 years ago by
Milestone: | tbd → 1.9 |
---|---|
Status: | new → assigned |
Summary: | Resizing of dijit.Dialog() not correct → Dialog: resizing not correct |
Note: See
TracTickets for help on using
tickets.
That makes sense. Dialog.show() calls:
so presumably resize() can do that order too.