diff --git a/topics/basics/basic_action_system.md b/topics/basics/basic_action_system.md
index f8eee4fe7..ff4edf26f 100644
--- a/topics/basics/basic_action_system.md
+++ b/topics/basics/basic_action_system.md
@@ -416,7 +416,8 @@ Two steps are required to register an action from code:
* Second, the action needs to be added to one or more groups.
To get an instance of an action group by ID, it is necessary to call `ActionManager.getAction()` and cast the returned value to [`DefaultActionGroup`](%gh-ic%/platform/platform-api/src/com/intellij/openapi/actionSystem/DefaultActionGroup.java).
-## Building UI from Actions
+## Building a Toolbar/Popup Menu from Actions
+{id="buildingToolbarPopupMenu"}
If a plugin needs to include a toolbar or popup menu built from a group of actions in its user interface, that is achieved through [`ActionPopupMenu`](%gh-ic%/platform/editor-ui-api/src/com/intellij/openapi/actionSystem/ActionPopupMenu.java) and [`ActionToolbar`](%gh-ic%/platform/editor-ui-api/src/com/intellij/openapi/actionSystem/ActionToolbar.java).
These objects can be created through calls to the `ActionManager.createActionPopupMenu()` and `createActionToolbar()` methods.
diff --git a/topics/ui/controls/toolbar.md b/topics/ui/controls/toolbar.md
index 4acd9759e..f45defe5c 100644
--- a/topics/ui/controls/toolbar.md
+++ b/topics/ui/controls/toolbar.md
@@ -4,6 +4,13 @@
UI guidelines on using toolbars.
+
+
+
+**Implementation:** [](basic_action_system.md#buildingToolbarPopupMenu)
+
+
+
A toolbar provides quick access to frequently used actions and filters. It appears in dialogs, pop-ups, tool windows, lists, trees, and tables.
{width=428}