doway-coms 2.8.7 → 2.8.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1629,6 +1629,7 @@ export default {
|
|
|
1629
1629
|
if (
|
|
1630
1630
|
menu.code !== 'sort' &&
|
|
1631
1631
|
menu.code !== 'copy' &&
|
|
1632
|
+
menu.code !== 'copyRow' &&
|
|
1632
1633
|
menu.code !== 'refresh' &&
|
|
1633
1634
|
menu.code !== 'clearFilter'
|
|
1634
1635
|
) {
|
|
@@ -3196,6 +3197,14 @@ export default {
|
|
|
3196
3197
|
currentVisible = data.find((x) => cellValue.indexOf(x) > -1)
|
|
3197
3198
|
? true
|
|
3198
3199
|
: false
|
|
3200
|
+
if(
|
|
3201
|
+
column.params.controlType === controlType.select ||
|
|
3202
|
+
column.params.controlType === controlType.multiSelect
|
|
3203
|
+
){
|
|
3204
|
+
currentVisible = data.find((x) => cellValue===x)
|
|
3205
|
+
? true
|
|
3206
|
+
: false
|
|
3207
|
+
}
|
|
3199
3208
|
}
|
|
3200
3209
|
return currentVisible
|
|
3201
3210
|
},
|