Update dei vari JS + pulizia x reset da tesrare REINCLUDENDO tutti i DB...
This commit is contained in:
@@ -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" />
|
||||
Vendored
+3646
-2115
File diff suppressed because it is too large
Load Diff
Vendored
+6
-6
File diff suppressed because one or more lines are too long
@@ -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
Reference in New Issue
Block a user