Introduzione Autonumeric per la gestione JS dei campi numerici
This commit is contained in:
parent
431dae1ee3
commit
401fe5286e
|
@ -1022,3 +1022,7 @@ div.tip {
|
||||||
.skin-default .nav.navbar-nav li a:hover {
|
.skin-default .nav.navbar-nav li a:hover {
|
||||||
background: #222222;
|
background: #222222;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.decimal-number {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
|
@ -1,9 +1,18 @@
|
||||||
// Modal
|
/**
|
||||||
|
* Modal gestito da versioni precedenti.
|
||||||
|
* @param title
|
||||||
|
* @param href
|
||||||
|
* @param init_modal
|
||||||
|
*/
|
||||||
function launch_modal(title, href, init_modal) {
|
function launch_modal(title, href, init_modal) {
|
||||||
openModal(title, href);
|
openModal(title, href);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Modal
|
/**
|
||||||
|
* Modal.
|
||||||
|
* @param title
|
||||||
|
* @param href
|
||||||
|
*/
|
||||||
function openModal(title, href) {
|
function openModal(title, href) {
|
||||||
// Fix - Select2 does not function properly when I use it inside a Bootstrap modal.
|
// Fix - Select2 does not function properly when I use it inside a Bootstrap modal.
|
||||||
$.fn.modal.Constructor.prototype.enforceFocus = function () {
|
$.fn.modal.Constructor.prototype.enforceFocus = function () {
|
||||||
|
@ -55,6 +64,11 @@ function openModal(title, href) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param event
|
||||||
|
* @param link
|
||||||
|
*/
|
||||||
function openLink(event, link) {
|
function openLink(event, link) {
|
||||||
if (event.ctrlKey) {
|
if (event.ctrlKey) {
|
||||||
window.open(link);
|
window.open(link);
|
||||||
|
@ -85,7 +99,9 @@ function getUrlVars() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Data e ora (orologio)
|
/**
|
||||||
|
* Data e ora (orologio)
|
||||||
|
*/
|
||||||
function clock() {
|
function clock() {
|
||||||
$('#datetime').html(moment().formatPHP(globals.timestamp_format));
|
$('#datetime').html(moment().formatPHP(globals.timestamp_format));
|
||||||
setTimeout('clock()', 1000);
|
setTimeout('clock()', 1000);
|
||||||
|
@ -125,33 +141,6 @@ function session_keep_alive() {
|
||||||
$.get(globals.rootdir + '/core.php');
|
$.get(globals.rootdir + '/core.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Funzione per gestire i contatori testuali nel formato x/total.
|
|
||||||
* Viene dato un id del campo da verificare come input, viene letto il testo nella forma [0-9]/[0-9] e viene fatto
|
|
||||||
* il replate del primo numero in base a quanti elementi sono stati trovati (valore passato per parametro)
|
|
||||||
*/
|
|
||||||
function update_counter(id, new_value) {
|
|
||||||
new_text = $('#' + id).html();
|
|
||||||
|
|
||||||
// Estraggo parte numerica (formato x/total)
|
|
||||||
pattern = /([^0-9]+)([0-9]+)\/([0-9]+)([^0-9]+)/;
|
|
||||||
new_text = new_text.replace(pattern, "$1" + new_value + "/$3$4");
|
|
||||||
|
|
||||||
// Estraggo totale (parte numerica dopo lo slash /)
|
|
||||||
matches = pattern.exec(new_text);
|
|
||||||
total = matches[3];
|
|
||||||
|
|
||||||
$('#' + id).html(new_text);
|
|
||||||
|
|
||||||
if (new_value == total) {
|
|
||||||
$('#' + id).removeClass('btn-warning').removeClass('btn-danger').addClass('btn-success');
|
|
||||||
} else if (new_value == 0) {
|
|
||||||
$('#' + id).removeClass('btn-warning').removeClass('btn-success').addClass('btn-danger');
|
|
||||||
} else {
|
|
||||||
$('#' + id).removeClass('btn-success').removeClass('btn-danger').addClass('btn-warning');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function setContrast(backgroundcolor) {
|
function setContrast(backgroundcolor) {
|
||||||
var rgb = [];
|
var rgb = [];
|
||||||
var bg = String(backgroundcolor);
|
var bg = String(backgroundcolor);
|
||||||
|
@ -219,9 +208,7 @@ function message(element) {
|
||||||
confirmButtonText: button,
|
confirmButtonText: button,
|
||||||
confirmButtonClass: btn_class,
|
confirmButtonClass: btn_class,
|
||||||
onOpen: function () {
|
onOpen: function () {
|
||||||
start_superselect();
|
restart_inputs();
|
||||||
start_inputmask();
|
|
||||||
start_datepickers();
|
|
||||||
},
|
},
|
||||||
preConfirm: function () {
|
preConfirm: function () {
|
||||||
$form = $('#swal-form');
|
$form = $('#swal-form');
|
||||||
|
@ -450,8 +437,10 @@ function prepareForm(form) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Visualizzazione dei messaggi attivi tramite toastr.
|
||||||
|
*/
|
||||||
function renderMessages() {
|
function renderMessages() {
|
||||||
// Visualizzazione messaggi
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: globals.rootdir + '/ajax.php',
|
url: globals.rootdir + '/ajax.php',
|
||||||
type: 'get',
|
type: 'get',
|
||||||
|
@ -504,14 +493,17 @@ function restart_inputs() {
|
||||||
start_datepickers();
|
start_datepickers();
|
||||||
start_inputmask();
|
start_inputmask();
|
||||||
|
|
||||||
|
initNumbers();
|
||||||
start_superselect();
|
start_superselect();
|
||||||
|
|
||||||
// Autosize per le textarea
|
// Autosize per le textarea
|
||||||
autosize($('.autosize'));
|
autosize($('.autosize'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Messaggio di avviso salvataggio a comparsa sulla destra solo nella versione a desktop intero
|
||||||
|
*/
|
||||||
function alertPush() {
|
function alertPush() {
|
||||||
// Messaggio di avviso salvataggio a comparsa sulla destra solo nella versione a desktop intero
|
|
||||||
if ($(window).width() > 1023) {
|
if ($(window).width() > 1023) {
|
||||||
var i = 0;
|
var i = 0;
|
||||||
|
|
||||||
|
@ -541,6 +533,13 @@ function alertPush() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param button
|
||||||
|
* @param form
|
||||||
|
* @param data
|
||||||
|
* @returns {Promise<unknown>}
|
||||||
|
*/
|
||||||
function salvaForm(button, form, data = {}) {
|
function salvaForm(button, form, data = {}) {
|
||||||
return new Promise(function (resolve, reject) {
|
return new Promise(function (resolve, reject) {
|
||||||
// Caricamento visibile nel pulsante
|
// Caricamento visibile nel pulsante
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
function initNumbers() {
|
||||||
|
$('.decimal-number').not('.bound').each(function () {
|
||||||
|
let $this = $(this);
|
||||||
|
|
||||||
|
let min = $this.attr('min-value') ? $this.attr('min-value') : "-10000000000000";
|
||||||
|
let max = $this.attr('max-value') ? $this.attr('max-value') : "10000000000000";
|
||||||
|
|
||||||
|
let decimals = $this.attr('decimals') ? $this.attr('decimals') : globals.cifre_decimali;
|
||||||
|
|
||||||
|
let autonumeric = new AutoNumeric(this, {
|
||||||
|
caretPositionOnFocus: "decimalLeft",
|
||||||
|
allowDecimalPadding: true,
|
||||||
|
currencySymbolPlacement: "s",
|
||||||
|
negativePositiveSignPlacement: "p",
|
||||||
|
decimalCharacter: globals.decimals,
|
||||||
|
decimalCharacterAlternative: ".",
|
||||||
|
digitGroupSeparator: globals.thousands,
|
||||||
|
emptyInputBehavior: "zero",
|
||||||
|
modifyValueOnWheel: false,
|
||||||
|
outputFormat: "string",
|
||||||
|
unformatOnSubmit: true,
|
||||||
|
watchExternalChanges: true,
|
||||||
|
minimumValue: min,
|
||||||
|
maximumValue: max,
|
||||||
|
decimalPlaces: decimals,
|
||||||
|
});
|
||||||
|
|
||||||
|
$this.data("autonumeric", autonumeric);
|
||||||
|
}).addClass('bound');
|
||||||
|
}
|
|
@ -76,6 +76,7 @@ const JS = gulp.parallel(() => {
|
||||||
'datatables.net-scroller/js/dataTables.scroller.js',
|
'datatables.net-scroller/js/dataTables.scroller.js',
|
||||||
'datatables.net-select/js/dataTables.select.js',
|
'datatables.net-select/js/dataTables.select.js',
|
||||||
'dropzone/dist/dropzone.js',
|
'dropzone/dist/dropzone.js',
|
||||||
|
'autonumeric/dist/autoNumeric.min.js',
|
||||||
'eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js',
|
'eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js',
|
||||||
'fullcalendar/dist/fullcalendar.js',
|
'fullcalendar/dist/fullcalendar.js',
|
||||||
'geocomplete/jquery.geocomplete.js',
|
'geocomplete/jquery.geocomplete.js',
|
||||||
|
|
|
@ -1,18 +1,21 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use Util\Ini;
|
||||||
|
|
||||||
include_once __DIR__.'/../../core.php';
|
include_once __DIR__.'/../../core.php';
|
||||||
|
|
||||||
function crea_form_componente($contenuto)
|
function crea_form_componente($contenuto)
|
||||||
{
|
{
|
||||||
$fields = \Util\Ini::getFields($contenuto);
|
$fields = Ini::getFields($contenuto);
|
||||||
$title = array_shift($fields);
|
$title = array_shift($fields);
|
||||||
|
|
||||||
foreach ($fields as $key => $value) {
|
foreach ($fields as $key => $value) {
|
||||||
$fields[$key] = '<div class="col-md-4">'.$value.'</div>';
|
$fields[$key] = '<div class="col-md-4">'.$value.'</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
echo $title;
|
echo $title.'
|
||||||
echo '<div class="row">';
|
<div class="row">
|
||||||
echo PHP_EOL.implode(PHP_EOL, $fields).PHP_EOL.'<script>start_inputmask( "#info_componente" );</script>';
|
'.implode(PHP_EOL, $fields).'
|
||||||
echo '</div>';
|
<script>restart_inputs()</script>
|
||||||
|
</div>';
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
"main": "gulpfile.js",
|
"main": "gulpfile.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"admin-lte": "^2.4.0",
|
"admin-lte": "^2.4.0",
|
||||||
|
"autonumeric": "^4.6.0",
|
||||||
"autosize": "^3.0.21",
|
"autosize": "^3.0.21",
|
||||||
"bootstrap": "^3.3.7",
|
"bootstrap": "^3.3.7",
|
||||||
"bootstrap-colorpicker": "2.5.1",
|
"bootstrap-colorpicker": "2.5.1",
|
||||||
|
|
|
@ -100,7 +100,7 @@ class DefaultHandler implements HandlerInterface
|
||||||
button.attr("title", "'.tr('Visualizza password').'");
|
button.attr("title", "'.tr('Visualizza password').'");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
togglePassword_'.$values['id'].'();
|
togglePassword_'.$values['id'].'();
|
||||||
});
|
});
|
||||||
|
@ -109,7 +109,7 @@ class DefaultHandler implements HandlerInterface
|
||||||
if (!empty($values['strength'])) {
|
if (!empty($values['strength'])) {
|
||||||
$result .= '
|
$result .= '
|
||||||
<div id="'.$values['id'].'_viewport_progress"></div>
|
<div id="'.$values['id'].'_viewport_progress"></div>
|
||||||
|
|
||||||
<script src="'.ROOTDIR.'/assets/dist/password-strength/password.min.js"></script>
|
<script src="'.ROOTDIR.'/assets/dist/password-strength/password.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
|
@ -135,7 +135,7 @@ class DefaultHandler implements HandlerInterface
|
||||||
i18n: {
|
i18n: {
|
||||||
t: function (key) {
|
t: function (key) {
|
||||||
var result = globals.translations.password[key];
|
var result = globals.translations.password[key];
|
||||||
|
|
||||||
return result === key ? \'\' : result;
|
return result === key ? \'\' : result;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -143,7 +143,7 @@ class DefaultHandler implements HandlerInterface
|
||||||
minChar: 6,
|
minChar: 6,
|
||||||
onKeyUp: function(event, data) {
|
onKeyUp: function(event, data) {
|
||||||
var len = $("#'.$values['id'].'").val().length;
|
var len = $("#'.$values['id'].'").val().length;
|
||||||
|
|
||||||
if(len < 6) {
|
if(len < 6) {
|
||||||
$("'.$values['strength'].'").attr("disabled", true).addClass("disabled");
|
$("'.$values['strength'].'").attr("disabled", true).addClass("disabled");
|
||||||
} else {
|
} else {
|
||||||
|
@ -152,7 +152,7 @@ class DefaultHandler implements HandlerInterface
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#'.$values['id'].'_viewport_progress").insertAfter($("#'.$values['id'].'").closest(".form-group").find("div[id$=-errors]")).css("margin-top", "5px");
|
$("#'.$values['id'].'_viewport_progress").insertAfter($("#'.$values['id'].'").closest(".form-group").find("div[id$=-errors]")).css("margin-top", "5px");
|
||||||
});
|
});
|
||||||
</script>';
|
</script>';
|
||||||
|
@ -218,7 +218,7 @@ class DefaultHandler implements HandlerInterface
|
||||||
*/
|
*/
|
||||||
protected function number(&$values, &$extras)
|
protected function number(&$values, &$extras)
|
||||||
{
|
{
|
||||||
$values['class'][] = 'inputmask-decimal';
|
$values['class'][] = 'decimal-number';
|
||||||
|
|
||||||
$values['value'] = !empty($values['value']) ? $values['value'] : 0;
|
$values['value'] = !empty($values['value']) ? $values['value'] : 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue