mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +02:00
loading new Et2Date* instead of dropped et2_date* widget, thought r/o variants in nextmatch are still not working
This commit is contained in:
@ -482,7 +482,7 @@ export class et2_readonlysArrayMgr extends et2_arrayMgr
|
||||
if(typeof _attr != "undefined" && _attr !== null)
|
||||
{
|
||||
// Accept 'editable', but otherwise boolean
|
||||
return this.expandName(_attr) === 'editable' ? 'editable' : et2_evalBool(_attr);
|
||||
return typeof _attr === 'string' && this.expandName(_attr) === 'editable' ? 'editable' : et2_evalBool(_attr);
|
||||
}
|
||||
|
||||
// Otherwise take into accounf whether the parent is readonly
|
||||
@ -544,5 +544,4 @@ export function et2_arrayMgrs_expand(_owner : et2_widget, _mgrs : object, _data
|
||||
|
||||
// Return the resulting managers object
|
||||
return result;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user