frapell
frapell

Reputation: 53

How can I have Solgema.fullcalendar, plone.app.event and plone.app.contenttypes to work together?

On a fresh new Plone 4.3.2, I have installed these 3 products:

plone.app.contenttypes (1.1a1)
plone.app.event (1.0.4, with the dexterity and ploneintegration extras)
Solgema.fullcalendar (2.3.2)

From my policy product metadata.xml I have this:

<?xml version="1.0"?>
<metadata>
    <version>1</version>
    <dependencies>
        <dependency>profile-plone.app.dexterity:default</dependency>
        <dependency>profile-plone.app.contenttypes:default</dependency>
        <dependency>profile-plone.app.event:default</dependency>
        <dependency>profile-plone.app.event.ploneintegration:default</dependency>
        <dependency>profile-Solgema.fullcalendar:default</dependency>
    </dependencies>
</metadata>

Now, the issue is, when I install everything I:

Has anyone experience with these 3 products together? am I missing some configuration ?

I tried to follow the execution for the Solgema.fullcalendar product, and I reach the part were Solgema/fullcalendar/skins/solgemafullcalendar/createSFEvent.cpy is called, and under line 33, it calls SFAjax_base_edit, and this view fails, because this event doesn't have any date set yet.

Being that I'm creating a new event, shouldn't this be calling SFAjax_add_dx_event instead ?

Anyway, a bit lost here, any pointers would be much appreciated.

Upvotes: 4

Views: 568

Answers (1)

thet
thet

Reputation: 717

The issue is most likely already fixed in recent Solgema.fullcalendar versions. I cannot reproduce the error with a current setup on Plone 4.3.4.1. I'm using these version fixes in my buildout:

[versions]
plone.app.event = 1.1.4
plone.app.contenttypes = 1.1b3
Solgema.fullcalendar = 2.3.4

Please note, that you do not need the profile-plone.app.event.ploneintegration:default profile anymore.

Upvotes: 0

Related Questions