Update dei vari JS + pulizia x reset da tesrare REINCLUDENDO tutti i DB...

This commit is contained in:
Samuele E. Locatelli
2018-03-01 16:13:40 +01:00
parent fd2cbdbbe0
commit 1e0e155998
16 changed files with 3770 additions and 2204 deletions
+3
View File
@@ -0,0 +1,3 @@
/// <reference path="jquery-3.3.1.js" />
/// <reference path="jquery-ui-1.12.1.js" />
/// <reference path="modernizr-2.8.3.js" />
+3646 -2115
View File
File diff suppressed because it is too large Load Diff
+6 -6
View File
File diff suppressed because one or more lines are too long
+58
View File
@@ -0,0 +1,58 @@
/*
* Utility JS Steamware
*
* Steamware 2014+
*
*/
/*------------------------------------------------------------------
- Formattazione date (standard e formato AS400 tipo yyyyMMdd
------------------------------------------------------------------*/
function dtStandard() {
$.datepicker.setDefaults($.datepicker.regional["it"]);
$(".datepicker").datepicker({
//showOtherMonths: true,
//selectOtherMonths: true,
showButtonPanel: true,
changeMonth: true,
changeYear: true,
dateFormat: "dd/mm/yy"
});
}
/*------------------------------------------------------------------
- Abilitazione tabs jQueryui
------------------------------------------------------------------*/
function fixTabs() {
$(".tabGroup").tabs();
}
/*------------------------------------------------------------------
- Abilitazione buttongroups radio jQueryui
------------------------------------------------------------------*/
function fixRadioBtnGroup() {
//$(".radioBtnGrp").buttonset();
//$("#radio").buttonset();
}
/*------------------------------------------------------------------
- Chiamate al DOM pagina pronta jQuery
------------------------------------------------------------------*/
$(function () {
dtStandard();
fixTabs();
fixRadioBtnGroup();
});
//// oggetto da legare all'update parziale ajax di asp.net
//var prm = Sys.WebForms.PageRequestManager.getInstance();
//prm.add_endRequest(function () {
// // re-bind your jQuery events here
// $(function () {
// dtStandard();
// fixTabs();
// fixRadioBtnGroup();
// });
//});
File diff suppressed because one or more lines are too long