mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-14 12:04:54 +01:00
Accept string without suffix as fixedWidth.
Fixes infolog defaults missing when changing details/no details
This commit is contained in:
parent
896ce29c1d
commit
066f0b5c85
@ -119,6 +119,10 @@ var et2_dataview_column = ClassWithAttributes.extend({
|
||||
{
|
||||
this.fixedWidth = parseInt(w.substr(0, w.length - 2));
|
||||
}
|
||||
else if (typeof w == 'string' && !isNaN(w))
|
||||
{
|
||||
this.fixedWidth = parseInt(w);
|
||||
}
|
||||
},
|
||||
|
||||
set_visibility: function(_value) {
|
||||
|
Loading…
Reference in New Issue
Block a user