在DataForm中, 如何取得 #O Options的選擇內容?
如下, 可以透過以 selectoptions()的方法來取得:
function dfMaster_onApply()
{
    var date1 = $('#dfMaster_申請日期').datebox('getValue');
    var date2 = $('#dfMaster_請假日期').datebox('getValue');
    var type = $('#dfMaster_請假類型').selectoptions('getValue');
    if (type=='特休假' && date1 < date2) {
          $.alert("特休假 至少需前1日申請之",'info');
          return false;
    }
    return true;
}