doway-coms 2.10.48 → 2.10.49
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
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
:popupAddPath="scope.column.params.popupAddPath"
|
|
323
323
|
:allowAutoClear="scope.column.params.allowAutoClear"
|
|
324
324
|
@preSearch="(searchInfo,repeatRowInfo,row,api) => preSearch(searchInfo, scope,null,api)"
|
|
325
|
-
@selectChanged="
|
|
325
|
+
@selectChanged="(selectedRowInfo)=>pulldownSelectChanged(scope,selectedRowInfo)"
|
|
326
326
|
@confirmMultiSelect="
|
|
327
327
|
(pulldownView, selectRows) =>
|
|
328
328
|
pulldownMultiSelect(scope, pulldownView, selectRows)
|
|
@@ -2701,6 +2701,10 @@ export default {
|
|
|
2701
2701
|
}
|
|
2702
2702
|
return { visible: fieldVisible, edit: originEdit }
|
|
2703
2703
|
},
|
|
2704
|
+
pulldownSelectChanged(scope,selectedRowInfo){
|
|
2705
|
+
scope['pulldownSelectedRow'] = selectedRowInfo
|
|
2706
|
+
this.cellValueChange(scope)
|
|
2707
|
+
},
|
|
2704
2708
|
cellValueChange(scope, e) {
|
|
2705
2709
|
console.debug(scope.column.field + 'value change')
|
|
2706
2710
|
if (
|