not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
805 B

  1. /**
  2. A horizontal bar containing controls used to perform common UI actions.
  3. A Toolbar customizes the styling of the controls it hosts, including
  4. buttons, icons, and inputs.
  5. {kind: "onyx.Toolbar", components: [
  6. {kind: "onyx.Button", content: "Favorites"},
  7. {kind: "onyx.InputDecorator", components: [
  8. {kind: "onyx.Input", placeholder: "Enter a search term..."}
  9. ]},
  10. {kind: "onyx.IconButton", src: "go.png"}
  11. ]}
  12. Note that it's possible to style a set of controls to look like they are in
  13. a toolbar without having the container itself look like a toolbar. To do so,
  14. apply the "onyx-toolbar-inline" CSS class to the container that houses the
  15. controls.
  16. */
  17. enyo.kind({
  18. name: "onyx.Toolbar",
  19. classes: "onyx onyx-toolbar onyx-toolbar-inline",
  20. handlers: {
  21. onHide: "render"
  22. }
  23. });