我当前的表格形式只显示表格中的一些列。
我如何/在哪里可以以表格形式添加自定义列,这将是链接或按钮,并将带到另一个页面,其中包含该行的一些输入信息?
实施例
ID [Name] [Address] [Link or button here]
答案 0 :(得分:2)
添加自定义列:
转到"区域定义" - > " Source&#34 ;,在那里向SQL查询添加新列。例如:
select col1, -- column of table
col2, -- column of table
'some text' custom_column -- custom column that will contain text "some text"
-- in every row
from my_table
转到"报告属性",选择名称为&#34的列;自定义列"然后点击"编辑"按钮(铅笔图片),然后转到"列链接"并填写字段:
请参阅文档以了解APEX URL语法:http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35125/concept_url.htm