Grails 2.4.4 和完整的日历插件

Grails 2.4.4 and full calendar plugin

大家好,当我尝试在我的 grails 应用程序上为事件设置日历时,我遇到了新手问题。 我尝试了很多教程,但没有。 所以我决定查看插件完整日历 https://grails.org/plugin/full-calendar,但它正在使用带有资源且没有资产管道的旧版本,但现在在我的新 grails 2.4.4 版本中我迷路了,我真的想留在我的资产上。 如果有人有一些想法 对不起英语 最好的问候

我在 Grails 2.5.5 应用程序中使用 JQuery 日期选择器和时间选择器,效果非常好:

下载 jquery.timepicker.min.js(对于日期选择器不需要的时间选择器步骤)并添加到您的 assets/javascripts 目录。

在普惠制中:

<script>
$(function() {
    $( "#intakeDate" ).datepicker();
    $( "#screenoutDate" ).datepicker();
    $( "#investigatorAssignedDate" ).datepicker();
    $( "#intakeTime" ).timepicker({});
});
</script>


   <g:textField name="intakeDate" style="width: 7em" value="${formatDate(format:'MM/dd/yyyy',date:intakeCommand?.intakeDate)}" class="form-control"
                 title="mm/dd/yyyy" placeholder="mm/dd/yyyy" pattern="(0[1-9]|1[012])[/](0[1-9]|[12][0-9]|3[01])[/](19|20)[0-9][0-9]" />

在Config.groovy中绑定MM/dd/yyyy格式:

grails.databinding.dateFormats = ['MM/dd/yyyy', 'yyyy-MM-dd HH:mm:ss.S']

我发现了其他有钱人感兴趣的东西 UI 我可以很容易地用一些标签制作日历 linkhttp://grails.org/plugin/richui#CalendarMonthView