mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-18 04:31:06 +01:00
* eTemplate2/all apps: fixed not displayed readonly dates outside lists (eg. created/modified dates in dialogs)
This commit is contained in:
parent
6992005c6a
commit
7cafc2fd9c
@ -735,7 +735,7 @@ var et2_date_ro = et2_valueWidget.extend([et2_IDetachedDOM],
|
|||||||
*/
|
*/
|
||||||
attributes: {
|
attributes: {
|
||||||
"value": {
|
"value": {
|
||||||
"type": "integer"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
"ignore": false
|
"ignore": false
|
||||||
@ -781,7 +781,12 @@ var et2_date_ro = et2_valueWidget.extend([et2_IDetachedDOM],
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(typeof _value == 'string' && isNaN(_value))
|
if(typeof _value == 'string' && _value.match(/(\d{4})-(\d{2})-(\d{2})T(\d{2})\:(\d{2})\:(\d{2})(?:\.\d{3})?(?:Z|[+-](\d{2})\:(\d{2}))/))
|
||||||
|
{
|
||||||
|
this.date = new Date(_value);
|
||||||
|
this.date = new Date(this.date.valueOf() + (this.date.getTimezoneOffset()*60*1000))
|
||||||
|
}
|
||||||
|
else if(typeof _value == 'string' && isNaN(_value))
|
||||||
{
|
{
|
||||||
// parseDateTime to handle string PHP: DateTime local date/time format
|
// parseDateTime to handle string PHP: DateTime local date/time format
|
||||||
var parsed = (typeof jQuery.datepicker.parseDateTime("yy-mm-dd","hh:mm:ss", _value) !='undefined')?
|
var parsed = (typeof jQuery.datepicker.parseDateTime("yy-mm-dd","hh:mm:ss", _value) !='undefined')?
|
||||||
|
Loading…
Reference in New Issue
Block a user