mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-03 13:25:05 +01:00
* Calendar: using equally sized, non-overlaping columns for multiple events at the same time
- old overlapping events failed for more then 6 columns - clicking on events opened the frist/underlaying event not the visible one
This commit is contained in:
parent
b6203cad52
commit
b90e590f66
@ -1124,8 +1124,11 @@ function open_edit(series)
|
||||
// displaying all event columns of the day
|
||||
foreach($eventCols as $n => $eventCol)
|
||||
{
|
||||
$html .= $this->eventColWidget($eventCol,!$n ? 0 : 60-10*(count($eventCols)-$n),
|
||||
count($eventCols) == 1 ? 100 : (!$n ? 80 : 50),$indent."\t",
|
||||
// equal sized columns
|
||||
$width = 95.0 / count($eventCols);
|
||||
$left = 2.5 + $n * $width;
|
||||
|
||||
$html .= $this->eventColWidget($eventCol,$left,$width,$indent."\t",
|
||||
$owner ? $owner : $this->user);
|
||||
}
|
||||
$html .= $indent."</div>\n"; // calDayCol
|
||||
@ -1195,11 +1198,12 @@ function open_edit(series)
|
||||
* @param string $indent string for correct indention
|
||||
* @param int $owner owner of the eventCol
|
||||
*/
|
||||
function eventColWidget($events,$left,$width,$indent,$owner)
|
||||
function eventColWidget($events,$left,$width,$indent,$owner,$z_index=null)
|
||||
{
|
||||
if ($this->debug > 1 || $this->debug==='eventColWidget') $this->bo->debug_message('uiviews::eventColWidget(%1,left=%2,width=%3,)',False,$events,$left,$width);
|
||||
|
||||
$html = $indent.'<div class="calEventCol" style="left: '.$left.'%; width:'.$width.'%;'.
|
||||
(!is_null($z_index) ? ' z-index:'.$z_index.';' : '').
|
||||
(!$this->use_time_grid ? ' top: '.$this->rowHeight.'%;' : '').'">'."\n";
|
||||
foreach($events as $event)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user