mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-19 15:22:17 +02:00
N°9185 - XML dashboard format should be in the new format when user exports its dashboard
This commit is contained in:
@@ -47,13 +47,15 @@ class DashboardLayoutGrid extends \DashboardLayout
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function GetDashletCoordinates($iCellIdx)
|
||||
{
|
||||
$iColNumber = $iCellIdx % 12;
|
||||
$iRowNumber = (int)floor($iCellIdx / 12);
|
||||
$iRowNumber = $iCellIdx % 12;
|
||||
$iColumnNumber = (int)floor($iCellIdx / 12);
|
||||
|
||||
return [$iColNumber, $iRowNumber];
|
||||
return [$iColumnNumber, $iRowNumber];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user