Add exception documentation

This commit is contained in:
Dennis Eichhorn 2019-07-04 22:37:54 +02:00
parent cd30fbe9c2
commit dabcb19aa1

View File

@ -7,8 +7,13 @@
data-src="api/admin/find/accgrp?search={#i<?= $this->printHtml($this->getId()); ?>}"> data-src="api/admin/find/accgrp?search={#i<?= $this->printHtml($this->getId()); ?>}">
<template><!-- Template for the selected element --></template> <template><!-- Template for the selected element --></template>
</div> </div>
<div id="<?= $this->printHtml($this->getId()); ?>-dropdown" class="dropdown" data-active="true"> <div id="<?= $this->printHtml($this->getId()); ?>-dropdown" class="dropdown" data-active="true" data-selected="<?= $task->getStatus(); ?>">
<template class="rowTemplate"><!-- Template for remote data or data manually to be added --></template> <template class="rowTemplate"><!-- Template for remote data or data manually to be added --></template>
<tr><td data-value="<?= TaskStatus::OPEN; ?>"><?= $this->getHtml('S1') ?>
<tr><td data-value="<?= TaskStatus::WORKING; ?>"><?= $this->getHtml('S2') ?>
<tr><td data-value="<?= TaskStatus::SUSPENDED; ?>"><?= $this->getHtml('S3') ?>
<tr><td data-value="<?= TaskStatus::CANCELED; ?>"><?= $this->getHtml('S4') ?>
<tr><td data-value="<?= TaskStatus::DONE; ?>"><?= $this->getHtml('S5') ?>
</div> </div>
</span> </span>
</div> </div>