|
几年前的帖子了.............
总结一些
什么办法可以控制form中File菜单中的Export吗?使其失效
答:
在FORM中,在FORM级的触发器EXPORT中,
将其中的代码app_standard.event('EXPORT');屏蔽掉,改为null;试一试
The export function in custom 11i forms should work without any additional code. The Export trigger on form level should do the job:
app_standard.event('EXPORT');
块级别(含数据的)
set_menu_item_property('file.export', ENABLED, property_trUe); |
|