Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 Adempiere 中的标注有疑问。我在文本字段中有一个标注,我想在执行标注后清除文本框值,光标将聚焦在我们想要的同一个文本字段上请帮助我!谢谢
尝试这个 MTab.setValue(MClass.ColumnName, "");
MTab.setValue(MClass.ColumnName, "");
在标注中,您将获得作为当前选项卡对象的 mTab。现在您可以使用该 mTab 对象访问该选项卡的所有字段。
所以使用 MTab.setValue(MClass.ColumnName, ""); 您可以清除文本框。第一个参数是列名称,第二个参数是您要设置的值。
谢谢