显示项目
我正在创建我的第一个 apex 应用程序,并且我有一堆已填充的项目。我想将它们全部显示在页面上,只是为了验证是否存储了正确的值。
我创建了一个名为 params 的新区域,并且我想在该区域内显示项目。例如,我有以下项目:P1000_USERID,我想做的就是在页面上显示该值。我该怎么做?
I am creating my first apex application and I have a bunch of items which have been populated. I wanted to display them all on the page just to verify that the right values are being stored.
I have created a new region named params and within that region I want to display the items. For example I have the item :P1000_USERID all I want to do is display that value on the page. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有多种选择,包括:
您可以使用如下文本在区域正文中显示项目值:
P1000_USERID = &P1000_USERID。
例如这个区域定义:
显示:
You have various options, including:
You could display the item values in the region body with text like:
P1000_USERID = &P1000_USERID.
For example this region definition:
shows: