2
0
forked from Wavyzz/dolibarr

Merge revert

This commit is contained in:
Laurent Destailleur
2025-06-14 01:22:23 +02:00
parent c34622a124
commit 464dbe40fa
8 changed files with 688 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
/* Create an inline datepicker which leverages the
jQuery UI datepicker
*/
$.editable.addInputType('datepicker', {
element: function(settings, original) {
var input = $('<input />');
input.datepicker({
onSelect: function(dateText, inst) {
$(this).parents("form").submit();
}
});
$(this).append(input);
return (input);
}
});