当前位置:网站首页>JEditableTable的使用技巧
JEditableTable的使用技巧
2022-07-07 05:27:00 【OK_boom】
JEditableTable使用默认的条件进行查询
JEditableTable靠织入JeecgListMixin来实现查询,created的时候会优先执行JVxeTableModelMixin的created,所以会优先load一次data。
好在它有个开关可以关闭它自动加载数据。
在我们自己的查询vue处理上,在data里加入disableMixinCreated:true并且在created里面自己手动加载数据即可。
created() {
this.getSuperFieldList()
this.$nextTick(()=>{
if (this.type=='purchase'){
this.$set(this.queryParam,'approved',"1")
}
this.loadData();
//初始化字典配置 在自己页面定义
this.initDictConfig();
})
}
JEditableTable修改记录的默认值
尝试了很多种方案,最后确定要修改JEditableTable的dataSource并需要触发它的监听功能才能将新的数据加载到界面,但JEditableTable的dataSource 监听没有deep,要加上才能监听到dataSource内容的变化。
dataSource: {
immediate: true,
deep: true,
handler: function (newValue) {
// 兼容IE
this.getElementPromise('tbody').then(() => {
this.initialize()
this._pushByDataSource(newValue)
})
}
},
下面要实现的是,当数据联动让JEditableTable里面的select类型的字段的options重新刷新并将JEditableTable所有记录这个字段的值清空
async prodCatChange(value){
//tbVendor 是JEditableTable实例
let tbVendor = await getRefPromise(this, 'smpProductVendor')
let column=tbVendor.columns.filter(m=>m.key=='vendorId')[0]
column.options=[]//必须清空,不然会记录叠加
tbVendor._loadDictConcatToOptions(column)
let dataSource=this.smpProductVendorTable.dataSource
dataSource.forEach(item=>{
item.vendorId='.'
})
dataSource.forEach(item=>{
item.vendorId=''
})
},
代码里为什么要将vendorId设置两次? 因为设置一次的话,重复执行这个方法它就无法再次触发tbVendor的dataSource监听。
边栏推荐
猜你喜欢
eBPF Cilium实战(1) - 基于团队的网络隔离
PVTV2--Pyramid Vision TransformerV2学习笔记
Réplication de vulnérabilité - désrialisation fastjson
The truth of robot education in hands-on practice
opencv学习笔记一——读取图像的几种方法
Vulnerability recurrence easy_ tornado
探索STEAM艺术设计中的创造力
rsync远程同步
2 - 3 arbre de recherche
Iptables' state module (FTP service exercise)
随机推荐
[IELTS speaking] Anna's oral learning records part2
Openvscode cloud ide joins rainbow integrated development system
Transformation function map and flatmap in kotlin
Domain specific language / DSL in kotlin
Iptables' state module (FTP service exercise)
利用 Helm 在各类 Kubernetes 中安装 Rainbond
SSM integration
Openjudge noi 2.1 1752: chicken and rabbit in the same cage
解读创客思维与数学课程的实际运用
How to understand distributed architecture and micro service architecture
解析创新教育体系中的创客教育
[quick start of Digital IC Verification] 11. Introduction to Verilog testbench (VTB)
Le système mes est un choix nécessaire pour la production de l'entreprise
Installation and configuration of PLSQL
[quick start of Digital IC Verification] 10. Verilog RTL design must know FIFO
数据中台落地实施之法
单元测试报告成功率低
打通法律服务群众“最后一公里”,方正璞华劳动人事法律自助咨询服务平台频获“点赞”
字符串操作
[quick start of Digital IC Verification] 14. Basic syntax of SystemVerilog learning 1 (array, queue, structure, enumeration, string... Including practical exercises)