英文:
Oracle Apex Text box should show hyphen when null
问题
我有一个页面项,它是一个文本框,其数据源是数据库列。
页面项:P1_EMP_NAME
数据库列:EMP_NAME
如果它为空,在Apex中,我希望显示破折号,但目前它显示为空。
如何实现这个目标?
英文:
I have a page item which is a text box and it has source as database cokumn.
Page item: P1_EMP_NAME
Database_Column : EMP_NAME
If it is null, in apex i want hyhen to display but currently it is coming as blank.
How can this be achieved?
答案1
得分: 1
答案2
得分: 1
请在默认值处提及为“-”。如果值在数据库中可用,则会显示实际值,否则始终会显示“-”。
英文:
Please mention default value as "-", If value is available in DB., it will show the actual value, else always it will display "-"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论