DevExtreme jQuery/JS - Specify Item Location

To set the location of items on a toolbar, use the location option. It accepts one of the following values.

  • "center"
    Places the item in the center of the toolbar.

  • "before"
    Places the item before the central element(s).

  • "after"
    Places the item after the central element(s).

Toolbar items with identical location preserve the order they have in the data source. For example, items produced by the code below will have the following order: "Add", "Edit", "Products", "Suppliers", "Delete", "About".

JavaScript
  • $(function() {
  • $("#toolbarContainer").dxToolbar({
  • items: [
  • { text: 'Delete', location: 'after' },
  • { text: 'About', location: 'after' },
  • { text: 'Products', location: 'center' },
  • { text: 'Suppliers', location: 'center' },
  • { text: 'Add', location: 'before' },
  • { text: 'Edit', location: 'before' }
  • ]
  • });
  • });

When there is not enough width for all toolbar items, or if certain toolbar items are secondary, they can be rendered as commands on the overflow menu. This menu can be a Popover, an Action Sheet or a Drop-Down Menu, depending on which device the application is running on. To render a toolbar item as a command on the overflow menu, assign "always" or "auto" to the locateInMenu option.

JavaScript
  • $(function() {
  • $("#toolbarContainer").dxToolbar({
  • items: [
  • { text: 'Add', locateInMenu: 'auto' },
  • { text: 'Change', locateInMenu: 'always' },
  • { text: 'Remove', locateInMenu: 'always' }
  • ]
  • });
  • });
See Also