如何在 EMC Documentum WDK Web 应用程序的 DocbaseAttributeList 中动态指定 DocbaseAttribute 的默认值?
我在包含 docbaseattributes 的页面上有 docbaseattributelist。如何在 EMC Documentum WDK 应用程序中动态(从 Web 应用程序内部)为此列表的某些 docbaseattribute 设置默认值?
I have docbaseattributelist on a page containing docbaseattributes. How can i dynamically (from inside of my web application) set default value for certain docbaseattribute of this list in EMC Documentum WDK application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
视情况而定,
如果是在导入期间,那么您可以通过导入组件设置 docbaseattribute 控件的默认值列表,
在其他情况下,您将需要扩展源 docbaseattribute,并且当该值更改时更新目标 docbaseattribute。使用 IVisitor 定位目标 docbaseattribute,例如查看保存代码如何使用 FindDirtyAttributeValue
Depends,
if it is during import, then you can set a list of default values for the docbaseattribute controls via the Import component
in other cases you will need to extend the source docbaseattribute and when that value changes update the target docbaseattribute. Use an IVisitor to locate the target docbaseattribute, for example see how FindDirtyAttributeValue is used by the saving code