Completamento insert componenti x JQM e boundle & altro...

This commit is contained in:
Samuele E. Locatelli
2015-04-16 16:42:13 +02:00
parent f4a6c27fdb
commit 0eb2c494ce
69 changed files with 8443 additions and 11 deletions
+48
View File
@@ -0,0 +1,48 @@
/*
* 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();
//}
///*------------------------------------------------------------------
//- Chiamate al DOM pagina pronta jQuery
//------------------------------------------------------------------*/
//$(function () {
// dtStandard();
// fixTabs();
//});
/*--------------------------------------------------------------------
- Disabilitare ajax di JQM che fa a pugni con ajax di WebFORMS...
------------------------------------------------------------------*/
$(document).bind("mobileinit", function(){
$.mobile.ajaxEnabled = false;
});