Skip to main content
This page documents toolbar actions derived from source code. Some actions may vary depending on your Gantt version and configuration.

Edit Mode Actions

ActionIconVisibilityDescription
Editreadonly=false and alwaysedit=falseEnters Gantt edit mode, enabling task drag, resize, and creation
Close EditingIn edit mode, alwaysedit=falseExits edit mode and returns to view-only display
Save💾Edit mode with unsaved changesSaves all pending task and dependency link changes to Polarion. Shows a progress indicator during save
UndoEdit modeReverses the last change (up to undo_steps operations, default 10)
RedoEdit modeReapplies the last undone change
When alwaysedit is true, the Gantt opens directly in edit mode. No Edit/Close buttons appear. When hideToolbar is true, a floating save button appears instead of the full toolbar.

Task Creation

ActionIconVisibilityDescription
New work itemEdit mode, at least one type has enableCreate=trueOpens a dropdown to select the work item type, then creates a new task and opens the lightbox
The new task dropdown lists all configured work item types that have enableCreate set to true. Each entry shows the type icon and name.
ActionIconLocationDescription
Go to todayToolbar and hamburger menuScrolls the Gantt chart horizontally to show the current date
Expand allToolbarExpands all task groups in the Gantt grid
Collapse allToolbarCollapses all task groups in the Gantt grid
SearchToolbarText input field for filtering work items by ID or title

Visualization Toggles

ActionIconToolbar LabelDescription
Toggle critical pathCritical PathHighlights the longest dependency chain in red when enabled
Toggle dependency linksShow LinksShows or hides dependency link arrows between tasks
Toggle drag childrenDrag ChildrenWhen enabled, child tasks move with their parent during drag
Toggle auto-schedulingAuto ScheduleEnables automatic date recalculation based on dependency links
Toggle resource hidingHide Empty ResourcesHides resource rows with no assigned tasks in the resource view

Data Actions

ActionIconDescription
Refresh🔄Reloads Gantt data from the server. Preserves scroll position and selected task
Mark DifferencesMarks work items with unsynchronised derived dates as modified
Clear Calendar CacheClears the server-side working calendar cache and reloads. Only visible when useCalendarCache=true
Print / Export to ImageOpens the export panel for PNG export or printing

Page Parameters

ActionIconVisibilityDescription
Page Parameters⚙️Maximized view onlyOpens the widget parameter editor panel for runtime parameter changes
The Page Parameters button only appears when the Gantt is in maximized/fullscreen view. Use the MaximizeGanttView URL parameter to control this behavior. See URL Parameters Reference.

Hamburger Menu

The hamburger menu (☰) in the first grid column header provides quick access to common actions:
Menu ItemDescription
RefreshReloads Gantt data from the server
Drag childrenToggle for moving children with parent
Go to todayScrolls the timeline to the current date
Set scaleSubmenu for selecting zoom level (Hour, Day, Week, Month, Quarter, Year)
Column visibilitySubmenu with checkboxes to show/hide individual grid columns
HelpOpens the Nextedy GANTT documentation site

Context Menu Actions

TriggerLocationActions
Right-click on column headerGrid column headerColumn visibility checkboxes for all configured columns
Right-click on timescale headerTimeline headerScale selector and Go to today
Shift + right-clickAnywhereBypasses the custom context menu and shows the browser default

Mouse Interactions

InteractionEdit Mode RequiredDescription
Drag task barYesMoves the task to a new date range
Drag task bar edgeYesResizes the task duration
Drag link handleYesCreates a dependency link between two tasks by connecting link circles
Click task barNoSelects the task and shows details in the sidebar panel
Double-click task barYesOpens the lightbox for inline field editing
ElementDescription
Version numberDisplays the installed Gantt version in the footer
Items infoShows the count of visible versus total task rows
Filter iconAppears when items are hidden, with a tooltip explaining why
Error indicatorAppears when configuration or data errors are detected
Admin settings linkGear icon linking to Gantt administration settings

Configuration Example

Disable dependency link creation via the Gantt Config Script:
gantt.config.drag_links = false;
Set the undo depth via the Gantt Config Script:
gantt.config.undo_steps = 20;
Source Code
  • prod-gantt-src/com.nextedy.polarion.gantt.client/src/js/generic/constants.js
  • prod-gantt-src/com.nextedy.polarion.gantt.client/src/js/tooltips.js
  • prod-gantt-src/com.nextedy.polarion.gantt.client/src/js/index.js
  • prod-gantt-src/com.nextedy.polarion.gantt.client/src/js/components/toolbar.js
  • prod-gantt-src/com.nextedy.polarion.gantt.client/src/js/commands.js