How easy is it to make AccordionContainer provided with Dojotoolkit to slide up and down On MouseHover of Title rather than onMouseClick of the title pane.
相关问题
- Simple Dojo i18n implementation
- Dgrid set focus on cell
- Cannot create dijits via dojo.NodeList.instantiate
- Firefox does not honor Content-type header in xhrP
- Calling object methods internally in dojo
相关文章
- Constrain position of Dojo FloatingPane
- How to get the “value” of a FilteringSelect <se
- Difference between registry.byId and dom.byId in d
- The load sequence difference between template and
- Dijit TabContainer Events - onFocus
- Dojo populate combo box widget dynamically
- Dojox.grid.DataGrid - in a widget - only renders o
- Is there any javascript library to capture mouse/k
This is fairly straightforward, but involves connecting to the semi-private _buttonWidget property for each child pane, so I can't guarantee that future versions of the toolkit won't break it. That said, I've tested in with the version of Dojo 1.3 on AOL's CDN.
Basically, after you've called startup() on your AccordionContainer, you just iterate through its children and connect each child's _buttonWidget to an anonymous onMouseOver event handler:
Full example is here