Oracle Apex 根据另一个字段填充只读字段

问题描述 投票:0回答:1

我有2张桌子。

select emp_id,dept_name,emp_name,commision from employee_dets;

select emp_id,dept_name, bu,org from emp_profile;

我有一个基于 EMP_PROFILE 表的交互式网格。

这里:

EMP_ID  is a select list
select emp_name d,emp_id r from employee_Dets;

DEPT_NAME is also a select list: 

从employee_Dets中选择dept_name d、dept_name r,其中emp_id= :EMP_ID;

因此 DEPT_NAME 是根据 EMP_ID 列填充的。目前其下降。

但我希望它是只读的,当选择 EMP_ID 时仍然自动填充并保存到数据库。

如果我将其设为只读->始终,该值不会自动填充。

oracle-apex
1个回答
0
投票

服务器定义的“只读”属性使项目/列“不活动”。不会提交到服务器(页面项和 .

在 Appearance 属性的 CSS Classes 属性中添加交互式网格区域的指定列:

is-readonly

 .

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.