gpt4 book ai didi

javascript - 在 IBM Anywhere 中使列表控件只读

转载 作者:行者123 更新时间:2023-11-28 04:04:46 26 4
gpt4 key购买 nike

我在渲染事件的 app.xml 中的列表控件上调用 eventHandler。eventHandler 正确调用该方法。我想根据标志值使列表只读。

readOnly : function(eventContext)
{
if (flag==true)
eventContext.setDisplay(true);
else
eventContext.setDisplay(false);
}

setDisplay 方法根据标志值使列表可见/不可见。使列表控件只读的正确方法是什么?

最佳答案

您获取字段的元数据,然后设置该特定字段的属性。

//get the current record: 
var currWO = eventContext.getResource().getCurrentRecord();
//set the readonly attribute to true.
currWO.getRuntimeFieldMetadata('fieldname').set('readonly'), true;

关于javascript - 在 IBM Anywhere 中使列表控件只读,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46794827/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com