Open the widget parameters
1
Open the page that holds the board
Navigate to the page that holds the Scheduler board. In a project created from the Scheduler demo template, that is the Scheduler entry in the project navigation.
2
Switch the page into edit mode
Expand Tools in the page toolbar, then click Edit.
3
Open the widget's parameters
Select the Scheduler widget on the page, then choose Edit widget parameters. The parameter panels appear, one composite panel per group.
4
Open the panel you need
Advanced holds the date window, the two script fields, and several display settings. It is collapsed by default — click its header to open it.Tooltip Fields is not in Advanced; it sits in the Work Items panel next to the query.
5
Apply your changes
Confirm the parameter editor and save the page. The board reloads with the new configuration.
Editing parameters changes the board for everyone. Widget parameters are part of the page, so a change you save applies to every user who opens it. The zoom level and the active view, by contrast, are per-user browser settings — see Navigate the Timeline.
Set the date window with Days Back and Days Forward
A Scheduler board always shows a window around today. It starts Days Back days before today and ends Days Forward days after today, and the resulting dates are shown in the footer as Timeline range.
Pick the window to match how the board is used. A sprint or maintenance board is easier to read at 10 days back and 30 to 60 days forward; a release-planning board needs a longer forward window.
Zooming does not change this window; it only changes how much of the window fits on screen. See Board and Timeline for how the window and the day grid relate.
Choose what a task tooltip shows
Hovering a task bar shows a tooltip with the work item’s title in bold, the task’s start and end dates, and then one line per field listed in Tooltip Fields. When the task is overdue, a red Overdue line with the due date is added. Tooltip Fields lives in the Work Items panel and defaults to four fields: Project, Type, Status, and Assignee(s).
The default tooltip: the work item's title, its date range, and the four fields listed in Tooltip Fields.
A field the work item does not have is skipped. The tooltip only lists fields that exist on the item being hovered, so boards that mix work item types can show shorter tooltips on some cards.
Adapt individual cards with an Item Script
Item Script (in Advanced) holds a JavaScript snippet that the board evaluates once for every work item it loads. The script runs on the server, in a read-only transaction, so it cannot change work item data — it can only influence how that one item is treated on the board. The script receives two objects:
Two flags are available:
Keep issue work items off a board that is only meant for tasks:
Item Script -- keep issues off the board
Item Script -- read-only board
Config Script
Config Script (also in Advanced) holds a server-side script that the widget evaluates when the page renders, and injects the result into the board’s page. It is a page-level hook, evaluated once per render, in contrast to Item Script, which is evaluated per work item as the board’s data is built. It is empty by default, and a board with an empty Config Script renders normally. Leave it empty unless you have a specific script to run there.Other settings in the Advanced panel
The time-points row is populated from legacy Polarion time points. Leaving Show Time Points selected does not add a row for modern Plans on current Polarion versions. See Swimlanes and Resources.
Verification
After changing these parameters, confirm each one on the board itself:- Set Days Forward to a specific number — for example 60 — and save. The footer Timeline range now ends roughly that many days after today, and starts Days Back days before it.
- Remove a field from Tooltip Fields and save. Hover a task bar: the tooltip no longer lists that field, and still shows the title and the date range.
- Put
cli.readonly = truein Item Script and save. Hover a card: the Add Link and Unplan item handles are not offered, and the bar does not move when you drag it. - Replace it with a
cli.hidecondition that matches one work item type on your board and save. Cards of that type are gone from the timeline, while the work items themselves are unchanged in Polarion. - Clear Item Script and save. The cards and their hover handles come back.
See Also
- Add the Scheduler Widget — place the widget and set its query, swimlanes, and date mapping
- Widget Parameters — every parameter with its panel and default
- Configure Swimlanes — assignee rows versus enumeration-field rows
- Board and Timeline — how the date window builds the day grid
- Navigate the Timeline — the per-user view settings the toolbar controls