我有一个应用程序设置使用核心动画页面在我的部分之间转换。在一节中,我试图渲染fullcalendar插件(http://fullcalendar.io/)。使用sbg-fullcalendar元素执行此操作:https://github.com/Smorgasbord-Development/sgb-fullcalendar
如果我将元素放在我的应用程序的第一部分,这很有效。应用程序加载日历呈现的domReady事件。但是,我希望包括在任何部分中,当我这样做时,它不会渲染。
我已经对sbg-calendar元素进行了更新,以侦听core-animated-pages-transition-end事件。日历元素确实捕获事件并尝试创建日历,但它仍然无法呈现。
渲染问题可能是因为jQuery选择器不能在阴影dom中工作吗?我对聚合物很陌生,不确定它的内部工作原理。
这是我的索引页。
<core-animated-pages id="pages" selected="{{selected}}" transitions="cross-fade fade-slide-up fade-scale" fit>
<section layout vertical>
<categories-page class="page" id="categories" cross-fade?="{{largeScreen}}" fade-slide-up?="{{!largeScreen}}" heading="{{heading}}" flex></categories-page>
</section>
<section layout vertical>
<calendar-page class="page" cross-fade?="{{largeScreen}}" fade-slide-up?="{{!largeScreen}}" heading="{{heading}}" flex></calendar-page>
</section>
</core-animated-pages>
和日历页面:
<link rel="import" href="../base-page/base-page.html">
<!-- Main -->
<div main layout vertical>
<core-header-panel id="headerPanel" mode="seamed" flex>
<core-toolbar>
<paper-icon-button icon="menu" core-drawer-toggle>
</paper-icon-button>
<div id="title" flex>{{heading}}</div>
<paper-menu-button id="menuBtn" noink>
<paper-icon-button icon="more-vert" noink></paper-icon-button>
<paper-dropdown class="dropdown" halign="right">
<core-menu class="menu">
<paper-item>Settings</paper-item>
<paper-item>Help</paper-item>
<paper-item>Feedback</paper-item>
</core-menu>
</paper-dropdown>
</paper-menu-button>
</core-toolbar>
<div class="content" style="max-height:1000px;">
<sgb-fullcalendar id="calendar" defaultView="month"></sgb-fullcalendar>
</div>
</core-header-panel>
</div>
</template>
<script>
(function () {
Polymer({
willPrepare: function () {
this.super();
},
getUrl: function (idx) {
console.log(window.location.pathname + '/' + idx);
return '/subjects/' + idx;
}
});
})();
</script>
我一直在使用Rob Dodson的联系人应用作为我的应用的示例。
答案 0 :(得分:2)
我已经成功使用domReady方法在我的一个部分(我也使用了核心动画页面)上渲染了fullCalendar。这就是我在你的情况下会这样做的事情:
<polymer-element name="calendar-page" attributes="Your Attribute">
<template>
<style>
:host {
display: block;
}
</style>
<link rel='stylesheet' href='../fullcalendar/fullcalendar.css'>
<div id='calendar'></div>
</template>
<script>
Polymer("calendar-page",{
domReady: function() {
$(this.$.calendar).fullCalendar({
weekends: false ,
allDaySlot: false,
minTime : "06:00:00",
maxTime : "18:00:00",
defaultView: 'agendaWeek',
header: {left:'title', center: 'agendaDay,agendaWeek,month', right: 'today prev,next'},
googleCalendarApiKey: 'YourApiKey',
events: {
googleCalendarId: 'YourCalendarId',
},
eventClick: function(calEvent, jsEvent, view) {
//console.log(calEvent);
return false;
},
})
},
});
</script>
不要忘记从元素内部链接css文件。希望这有帮助!