FORM中的日历开发

Calendar是Template提供给我们的standard object.可以使我们方便的为日期型字段提供日期的选择列表.

为项指定值列表 

KEY-LISTVAL触发器

calendar.show;
calendar.show(SYSDATE);--显示当前时间
相关函数

calendar.show(first_date date default null)
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前的日期.
        如下,只能选择当前日期之前的日期:
        calendar.setup('lower then sysdate',SYSDATE,null);

你可能感兴趣的:(#,工具技术,java,数据库,mysql)