Calendar是Template提供给我们的standard object.可以使我们方便的为日期型字段提供日期的选择列表.
要实现这个功能,可通过如下方法:
1. 为日期型字段指定LOV(ENABLE_LIST_LAMP)
2. 在字段的KEY–LISTVAL事件中编写代码:Calendar.show
Calendar Package包含如下几个Procedure:
1. Calendar.show(first_date date default null)
显示日期选择列表. 默认参数为空,即当前日期为高亮.也可定义任意日期为高亮,即设置first_date.
2. Calendar.setup (new_type varchar2
,low_date date DEFAULT null
,high_date date DEFAULT null
,sql_string varchar2 DEFAULT null);
设置日期范围.例:
A. calendar.setup(’WEEKEND’) 禁止选择周末.
B. calendar.setup(<30 char identifying name>, ,); 禁止选择某一日期段,可重复使用.
C.calendar.setup(<30 char identifying name>, null, null,); 禁止选择SQL提取出的日期清单.
D. calendar.setup(<30 char identifying name>, ,2009-01-01);只能选择2009-01-01后的日期.
E. calendar.setup(<30 char identifying name>, 2009-01-01, );只能选择2009-01-01前的日期.
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/25103190/viewspace-741408/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/25103190/viewspace-741408/