2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
2018-02-23 16:04:50 +01:00
|
|
|
?><form action="" method="post" id="add-form">
|
2017-08-04 16:28:16 +02:00
|
|
|
<input type="hidden" name="op" value="add">
|
|
|
|
<input type="hidden" name="backto" value="record-edit">
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-2">
|
2018-08-11 15:49:46 +02:00
|
|
|
{[ "type": "text", "label": "<?php echo tr('Codice'); ?>", "name": "idstatointervento", "maxlength": 10, "class": "alphanumeric-mask", "required": 1 ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
2018-07-03 12:28:38 +02:00
|
|
|
{[ "type": "text", "label": "<?php echo tr('Descrizione'); ?>", "name": "descrizione", "required": 1 ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-2">
|
2018-03-27 01:00:15 +02:00
|
|
|
{[ "type": "text", "label": "<?php echo tr('Colore'); ?>", "name": "colore", "id": "colore_", "required": 1, "class": "colorpicker text-center", "value": "#ffffff", "extra": "maxlength='7'", "icon-after": "<div class='img-circle square'></div>" ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- PULSANTI -->
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12 text-right">
|
2017-09-04 12:02:29 +02:00
|
|
|
<button type="submit" class="btn btn-primary"><i class="fa fa-plus"></i> <?php echo tr('Aggiungi'); ?></button>
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
$(document).ready( function(){
|
|
|
|
$('.colorpicker').colorpicker().on('changeColor', function(){
|
2018-11-08 10:58:29 +01:00
|
|
|
$('#bs-popup #colore_').parent().find('.square').css( 'background', $('#bs-popup #colore_').val() );
|
2017-08-04 16:28:16 +02:00
|
|
|
});
|
|
|
|
|
2018-11-08 10:58:29 +01:00
|
|
|
$('#bs-popup #colore_').parent().find('.square').css( 'background', $('#bs-popup #colore_').val() );
|
2017-08-04 16:28:16 +02:00
|
|
|
});
|
|
|
|
</script>
|