WdatePicker开始日期不能大于结束日期

时间:2023-03-09 15:11:29
WdatePicker开始日期不能大于结束日期
<input class="input_calendar inputcss" id="startDate" runat="server" type="text"  
onfocus="WdatePicker({maxDate:'#F{$dp.$D(\'endDate\')||\'2120-10-01\'}'})" style="height: 30px; width: 153px;"/>
<input class="input_calendar inputcss" id="endDate" runat="server" type="text"
onfocus="WdatePicker({minDate:'#F{$dp.$D(\'startDate\')}',maxDate:'2120-10-01'})" style="height: 30px; width: 153px;"/>

开始日期不能大于结束日期,最容易出错的地方就是黄色背景部分,控件ID忘记设置。 maxDate 是最大日期范围。