Changes between Initial Version and Version 1 of Ticket #10507
- Timestamp:
- Dec 15, 2009, 6:43:50 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10507 – Description
initial v1 15 15 This is fairly limiting when it comes to plugins augmenting the toolbar. For example, consider the FullScreen toolbar. For it to work right, it has to compute the size of the toolbar, then the iframe container, etc. Well, what if you wanted additional toolbars, such as a find and replace toolbar? What if you wanted a footer (Such as the Breadcrumb plugin). It gets extremely diofficult for plugins like FullScreen to work well. I'm proposing we alter its dom construction a bit so it's like this: 16 16 17 {{{ 17 18 <div> 18 19 <div dojoAttachPoint="header"> … … 25 26 </div> 26 27 </div> 28 }}} 27 29 28 30 That way, we have a defined, beginning section, middle content, and trailing section. This gives generic sections to append toolbars and the like to that can also be generically size-computed, making implementing FullScreen in a generic manner simpler (in terms of calculating header/footer usage), and so on.