英文:
How can I hide buttons in Create mode and show buttons in Edit mode only?
问题
我可以在服务器端条件下选择“从不”来隐藏“CREATE”和“EDIT”模式下的按钮,但如何仅在“EDIT”模式下显示,我在哪里添加条件呢?
英文:
I have Reports and Form in oracle APEX ,
I need to hide the buttons in CREATE mode and I need to show the buttons in Edit mode
I can hide the buttons in both CREATE and EDIT mode from server-side condition and select Never
but how to show on EDIT mode only where I can add the condition to do it ?
答案1
得分: 0
我找到了解决方案
1- 点击按钮
2- 转到服务器端条件
3- 选择类型项目不为空
4- 选择您的主键项目
5- 保存更改
因为在创建模式下,您的主键值仍未创建,但在编辑模式下,主键已创建,您需要进行编辑。
英文:
I found the solution
1- Click the button
2- Go to server-side condition
3- Select the Type Item is NOT NULL
4- Select your primary key item
5- SAVE changes
because in CREATE MODE still your primary key value still not created but in EDIT mode primary key created and you need to EDIT.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论