欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

Date picker field

shiping1 的头像
 

4down voteaccepted
 

I'm using Drupal 7 and Clean theme.

Can i add date picker in content type field?

Searched about this but i not found any solution.

Users, when click date field, come date picker. Is it possible?

The Date module has a submodule called "Date Popup" which provides a jQuery UI popup widget for fields.

正确答案

Just install that module, add a new field to your content type, and when choosing the widget select "Pop-up calendar":

screenshot

 



function callback($date){

  drupal_add_library('system', 'ui.datepicker');
  drupal_add_js("(function ($) { $('.datepicker').datepicker(); })(jQuery);", array('type' => 'inline', 'scope' => 'footer', 'weight' => 5));

  return theme('my_theme');
}
普通分类: