ns/ace-bundle
Composer 安装命令:
composer require ns/ace-bundle
包简介
This bundle provides the ace admin bootstrap template
README 文档
README
#Features
AJAX Links
Add class 'ajaxForm' and data-update to the target to update with the return of the ajax call.
<form action="..." method="post" class="ajaxForm" data-update="#divToUpdate">...</form>
Then the form will be submitted over AJAX and the returned content if successful is put as the HTML content of the element with id divToUpdate. (Via Jquery $element.html(response)).
FullCalendar
Add the routing configuration
#app/config/routing.yml ns_ace: resource: "@NSAceBundle/Resources/config/routing.yml"
Include the following on the page you want to use the calendar
{% block javascripts %}
{{ parent() }}
<script src="//cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.5.1/fullcalendar.min.js"></script>
{% endblock %}
{% block stylesheets %}
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.5.1/fullcalendar.min.css" />
<link rel="stylesheet" media="print" href="//cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.5.1/fullcalendar.print.css" />
{{ parent() }}
{% endblock %}
{% block inlinescripts %}
<script type="text/javascript">
$(document).ready(function(){
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
$('#calendar-holder').fullCalendar({
header: {
left: 'prev, next',
center: 'title',
right: 'month, basicWeek, basicDay,'
},
lazyFetching: true,
timeFormat: {
// for agendaWeek and agendaDay
agenda: 'h:mmt', // 5:00 - 6:30
// for all other views
'': 'h:mmt' // 7p
},
eventSources: [
{
url: '{{path('ace_calendar_loader')}}',
type: 'POST',
// A way to add custom filters to your event listeners
data: {
},
error: function() {
//alert('There was an error while fetching Google Calendar!');
}
}
]
});
});
</script>
{% endblock %}
{% block body %}
...
<div id="calendar-holder"></div>
...
{% endblock %}
统计信息
- 总下载量: 18.65k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-08