mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Implement step attribute for date_duration widget. Seems FF needs step to be set to be able to distinguish valid or invalid decimal input format (eg. 1.5 or 1,5)
This commit is contained in:
parent
7442bff49c
commit
8472cc4186
@ -670,6 +670,12 @@ var et2_date_duration = (function(){ "use strict"; return et2_date.extend(
|
||||
"default": false,
|
||||
"type": "boolean",
|
||||
"description": "use d/h/m instead of day/hour/minute"
|
||||
},
|
||||
"step" : {
|
||||
"name": "Step limit",
|
||||
"default": 'any',
|
||||
"type": "string",
|
||||
"description": "Works with the min and max attributes to limit the increments at which a numeric or date-time value can be set."
|
||||
}
|
||||
},
|
||||
|
||||
@ -716,7 +722,7 @@ var et2_date_duration = (function(){ "use strict"; return et2_date.extend(
|
||||
.addClass('et2_date_duration');
|
||||
this.duration = jQuery(document.createElement("input"))
|
||||
.addClass('et2_date_duration')
|
||||
.attr({type: 'number', size: 3});
|
||||
.attr({type: 'number', size: 3, step:this.options.step});
|
||||
this.node.append(this.duration);
|
||||
|
||||
if(this.options.display_format.length > 1)
|
||||
|
Loading…
Reference in New Issue
Block a user