Bug : fix create event from AGENDA

This commit is contained in:
sparkyx 2024-08-01 19:58:24 +02:00
parent 50bebad93c
commit 2d262a2016
6 changed files with 66 additions and 9 deletions

View file

@ -34,7 +34,8 @@ $title->size="60";
$title->css_isze="60%";
// Description
$summary=new ITextarea('summary');
$summary->style='class="itextarea" style="padding:0px;margin:0px"';
$summary->set_enrichText('enrich');
$summary->style='class="itextarea" style="background-color:white;padding:0px;margin:0px"';
// Type of document / event
$type=new ISelect("type_event");
@ -113,9 +114,9 @@ echo HtmlInput::title_box(_('Nouvel événement'), 'action_add_div',"close","","
</p>
<span > <?php echo _("Description")?>
</span>
<p>
<div style="background-color:white">
<?php echo $summary->input()?>
</p>
</div>
<?php
echo HtmlInput::hidden('gDossier',Dossier::id());
echo HtmlInput::hidden('op','action_save');