Made different Layouts more customizable

This commit is contained in:
Frank Schubert
2022-04-19 14:20:54 +02:00
parent 37e48fa18a
commit 2e1cdae9a3
85 changed files with 170 additions and 110 deletions

View File

@@ -0,0 +1,11 @@
<input type="text" class="form-control" name="wfitem_<?=$item->name?>" id="wfitem_<?=$item->name?>_<?=$$wftype->id?>" value="<?=$item->value->value_string?>" placeholder="<?=$item->placeholder?>" />
<script type="text/javascript">
$('#wfitem_<?=$item->name?>_<?=$$wftype->id?>').datepicker({
language: 'de',
format: "dd.mm.yyyy",
showWeekDays: true,
todayBtn: 'linked',
autoclose: true
});
</script>