The basic dashboard contains an option for pagination of displayed widgets, allowing the set up of a rotation of the machines displayed on the screen.
You can manually check the machine widgets displayed by screen (default 5) and enter a page concept to sort the machines by workshops.
A basic example of the switcher is in the dashboards \ state_dashboard.erb file
<li data-switcher-interval="20000" data-row="1" data-col="1" data-sizex="4" data-sizey="1">
<div data-id="CNC_1" data-view="State" ></div>
<div data-id="CNC_2" data-view="State" ></div>
<div data-id="CNC_4" data-view="State" ></div>
</li>
<li data-switcher-interval="20000" data-row="1" data-col="1" data-sizex="4" data-sizey="1">
<div data-id="CNC_3" data-view="State" ></div>
<div data-id="CNC_5" data-view="State" ></div>
<div></div>
</li>
The <li></li> tags delimit a section where a series of widgets will scroll. The widgets, defined by <div ...> </div> , will be displayed one after the other, with the delay indicated by the variable data-switcher-interval .Each section is autonomous and if the number of widgets or the delay are different, then there will be no correspondence between the elements displayed on each section. To keep this correspondence between cycles if one page has fewer machines than the others, it is possible to compensate by using an unused widget. <div> </div> .The following example illustrates the code snippet.