?iť?

Your IP : 18.217.110.145


Current Path : /home/s/c/g/scgforma/www/soc064/htdocs/includes/jquery/plugins/jeditable/
Upload File :
Current File : /home/s/c/g/scgforma/www/soc064/htdocs/includes/jquery/plugins/jeditable/jquery.jeditable.ui-datepicker.js

/* Create an inline datepicker which leverages the
   jQuery UI datepicker 
*/
$.editable.addInputType('datepicker', {
  element: function(settings, original) {
      var input = $('<input />');

      input.datepicker({
        onSelect: function(dateText, inst) {
          $(this).parents("form").submit();
        }
      });
      
      $(this).append(input);
      return (input);
  }
});