coer-elements 0.0.73 → 0.0.75
Sign up to get free protection for your applications and to get access to all the features.
@@ -1870,13 +1870,14 @@ class CoerGridExtension extends ControlValue {
|
|
1870
1870
|
break;
|
1871
1871
|
}
|
1872
1872
|
case 'toLocalZone': {
|
1873
|
+
response = true;
|
1873
1874
|
if (data === null)
|
1874
|
-
return
|
1875
|
+
return true;
|
1875
1876
|
if (typeof columnConfig.toLocalZone === 'boolean') {
|
1876
1877
|
response = columnConfig.toLocalZone;
|
1877
1878
|
}
|
1878
1879
|
else if (typeof columnConfig.toLocalZone === 'function') {
|
1879
|
-
response = (data === null) ?
|
1880
|
+
response = (data === null) ? true : columnConfig.toLocalZone({ property, row, value });
|
1880
1881
|
}
|
1881
1882
|
break;
|
1882
1883
|
}
|