当我尝试使用这样的回调函数用当前时间填充日期框时:
<?php
// in controller:
$this->grocery_crud->callback_add_field('date',array($this,'_date_fill_now'));
protected function _date_fill_now()
{
return '<input name="date" type="text" value="'. current_time() . '" maxlength="19" class="datetime-input">';
}
datepicker js 文件不会被加载,所以当我点击日期字段时不会弹出 datepicker。我怎样才能以正确的方式加载它们?