组件赋值
组件赋值:
self.getField("xxx") --> $("#xxx")
self.getField("xxx") --> $("#xxx")
self.getFieldValue("xxx") --> $("#xxx").val();
self.getFieldValue("xxx") --> $("#xxx").val();
获取页面F7元素当前的值:
$("#xxx").shrPromptBox('getValue');
设置页面F7元素的值:
$("#xxx").shrPromptBox('setValue',{id:"xxx",number:"xxx",name:"xxx",...});
设置选择框默认值:
$("#xxx").shrSelect("setValue","001");
获取选择框的值:
$("#xxx").shrSelect("getValue").value;
设置时间默认值:
$("#xxx").val(new Date().format("yyyy-MM-dd"));
设置文本框默认值:
$('#xxx').shrTextField("setValue","培训课程");
选择框设置默认值:
$("#xxx").shrCheckbox("check");
设置数字:
$('#xxx').shrNumberField("getValue");
获取时间:
that.getField("xxx").shrDatePicker("getValue");
设置时间:
that.getField("xxx").shrDatePicker("setValue",new Date().format("yyyy-MM-dd"));
$("#xxx").shrDatePicker("setValue",new Date().format("yyyy-MM-dd"));
设置textarea为禁用:
$('#xxx').attr("disabled",true);
$('#xxx').addClass("block-father disabled");
设置无法点击:
style="pointer-events: none;"
$("#entrys tr").css("pointer-events","none");
设置过滤条件:
bizFieldValue = self.getField("xxx").shrPromptBox("getValue"); // 单据头
bizFieldValue = self.getField("xxx").shrPromptBox("getValue"); // 单据体
filter = "xxx.id = '" + bizFieldValue.id + "'";
filter = "xxx.id = = '" + bizFieldValue.id + "'";
self.getField("xxx").shrPromptBox("setFilter",filter);
self.getField("xxx").shrPromptBox("setFilter",filter);
组件赋值
本文2024-09-17 01:12:13发表“s-hr cloud知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-shr-65918.html