开发者

how to display server side dates in jquery datepicker?

i have a textbox1 in my asp.net webform which shows the server side date :

i want the user would not select date using jquery datepicker earlier than the date in the textbox1

i m using the following code to show jquery calendar in other textbox2 :

<link href="./themes/sunny/jquery.ui.all.css" rel="stylesheet" type="text/css"/>
         <link href="./themes/sunny/jquery.ui.all.css" rel="stylesheet" type="text/css"/>
         <script src="./js/jquery.min.js"></script>
         <link rel="stylesheet" href="./demos/demos.css">    
<script src="./js/jquery-ui.min.js"></script> 

    <script type="text/javascript">  
       $(document).ready(function() {    

      $(".datepicker").datepicker({    

          buttonText: 'Select date:',    
          firstDay: 1,  
          buttonImage: "./demos/datepicker/images/calendar.gif",  
          buttonImageOnly: true,    
          showOn: 'both',    
          showAnim: 'fadeIn',    
          minDate: '0',
          dateFormat: 'dd-M-yy',    
          onSelect: function() { $(this).trigger("onchange", null); }    
      });    
      });  开发者_StackOverflow社区 
    </script> 


minDate: new Date('<%= textbox1.Text %>')

Assuming your textbox1 contains a valid date format. Do you actually need textbox1 though? If you just want the server date you can do:

minDate: new Date('<%= DateTime.Now.ToString() %>')
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜