Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • David Dupont 61 posts 115 karma points
    Jul 03, 2011 @ 21:27
    David Dupont
    0

    Bug During Event Creation

    Hello,

    After solving my first issue.
    I've tried to create an event but I get the following error :

    Server Error in '/' Application.

    Object reference not set to an instance of an object.

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

    Source Error:

    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.


    Stack Trace:

    [NullReferenceException: Object reference not set to an instance of an object.]
       uCalendar.BusinessLogic.uCalendarEvent.Save(String& message) +260
       uCalendar.UI.UserControls.CalendarEventEditor.(String& , Boolean ) +345
       uCalendar.UI.UmbracoPages.CreateEvent.eventSave_Click(Object sender, EventArgs e) +46
       System.Web.UI.WebControls.Button.OnClick(EventArgs e) +118
       System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +112
       System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
       System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
       System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +36
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5563
    

    I don't know what is going on. Could you provide me an explanation?
    I'm interested in UCalendar for an offer I'm preparing for a client but I have to be sur that the component is robust and reliable.

    Regards


  • Daniel Bardi 927 posts 2562 karma points
    Jul 03, 2011 @ 22:39
    Daniel Bardi
    0

    Version 1.1 will be more reliable during the installation..

    We're changing the data access layer.

  • Stuart Burrows 61 posts 110 karma points
    Jul 07, 2011 @ 17:54
    Stuart Burrows
    0

    I'm in the same position as David - is there no fix/workaround in version 1.0?

    Also, is there an eta on version 1.1? Itching to get going!

  • Daniel Bardi 927 posts 2562 karma points
    Jul 13, 2011 @ 09:44
    Daniel Bardi
    0

    ETA is looking to be around end of July... 

    We are also getting uCalendar to work with MySQL as well..

    Thank you for your continued patience.

  • Johan Plesner Hamann 105 posts 199 karma points
    Jul 26, 2011 @ 15:44
    Johan Plesner Hamann
    0

    Is ETA still end of July?

    Very much looking forward to this package, and a perfect solution for my client.

    Best regards Johan

  • Daniel Bardi 927 posts 2562 karma points
    Nov 01, 2011 @ 19:49
    Daniel Bardi
    0

    I haven't forgotten about uCalendar.  Trouble finding time to complete due ironically to the initial release.

    When you build it, clients will come.

    Patience, folks... a final 1.1 release will be coming.

  • TaoistTotty 246 posts 314 karma points
    Dec 06, 2011 @ 23:10
    TaoistTotty
    0

    Any update on this?

    Can I help with anything? 

  • Daniel Bardi 927 posts 2562 karma points
    Dec 19, 2011 @ 20:22
    Daniel Bardi
    0

    Appreciate the offer.  Single developer here.  It's scheduled.

  • TaoistTotty 246 posts 314 karma points
    Dec 29, 2011 @ 13:25
    TaoistTotty
    0

    Is there a way to get the database updated manually so that version 1 can be got working?

  • Daniel Bardi 927 posts 2562 karma points
    Sep 15, 2012 @ 01:42
    Daniel Bardi
    0

    New version is just arounc the corner.. In recent, I've had time to work on uCalendar and iron out some of the major bugs.

    A smarter, better, faster uCalendar is coming very, very soon.

  • swgamerx 2 posts 22 karma points
    Oct 01, 2012 @ 16:09
    swgamerx
    0

    Any update on this bug fix? 

  • Daniel Bardi 927 posts 2562 karma points
    Oct 01, 2012 @ 19:04
    Daniel Bardi
    0

    I have a release ready to go.. I'll package it up get it online.

  • swgamerx 2 posts 22 karma points
    Oct 03, 2012 @ 17:34
    swgamerx
    0

    Hey Daniel, can you post a link on here once the package is online?

  • Mark Zawodny 9 posts 72 karma points
    Jul 22, 2013 @ 17:15
    Mark Zawodny
    0

    Having the same issue myself.  Year and a half has gone by without the promised v1.1 update.

    Daniel it seems like you have a lot of people that are interested in this project.  You would have a lot of people either willing to contribute to an open source version to get it out the door or sharing in the revenue to get it finished.  Bottom line - you're in a catch 22 in that not many people will pay a license fee to a product that breaks.

    I would suggest starting to get other developers involved so we can begin to fix the bugs and start using uCalendar in our sites.  Reach out to those who have responded in these forums!

  • Kris Janssen 210 posts 569 karma points c-trib
    Dec 20, 2013 @ 21:26
    Kris Janssen
    0

    It seems that the "look and feel" of uCalendar is very very similar to Brad Shaw's "Full Calendar".

    It seems, getting Full Calendar to work would just require you to prepare a "Calendar" doctype with some "Event" children and a macro that generates a javascript array of events in the appropriate format from the children:

    $(document).ready(function() {
    
        var date = new Date();
        var d = date.getDate();
        var m = date.getMonth();
        var y = date.getFullYear();
    
        $('#calendar').fullCalendar({
            header: {
                left: 'prev,next today',
                center: 'title',
                right: 'month,agendaWeek,agendaDay'
            },
            editable: true,
            events: [
                {
                    title: 'All Day Event',
                    start: new Date(y, m, 1)
                },
                {
                    title: 'Long Event',
                    start: new Date(y, m, d-5),
                    end: new Date(y, m, d-2)
                },
                {
                    id: 999,
                    title: 'Repeating Event',
                    start: new Date(y, m, d-3, 16, 0),
                    allDay: false
                },
                {
                    id: 999,
                    title: 'Repeating Event',
                    start: new Date(y, m, d+4, 16, 0),
                    allDay: false
                },
                {
                    title: 'Meeting',
                    start: new Date(y, m, d, 10, 30),
                    allDay: false
                },
                {
                    title: 'Lunch',
                    start: new Date(y, m, d, 12, 0),
                    end: new Date(y, m, d, 14, 0),
                    allDay: false
                },
                {
                    title: 'Birthday Party',
                    start: new Date(y, m, d+1, 19, 0),
                    end: new Date(y, m, d+1, 22, 30),
                    allDay: false
                },
                {
                    title: 'Click for Google',
                    start: new Date(y, m, 28),
                    end: new Date(y, m, 29),
                    url: 'http://google.com/'
                }
            ]
        });
    
    });
    

    This seems easy as pie really...

    Since I was looking for a calendar myself for a particular project I'll see if I can roll all this into a package over the Holidays. Seems like there is some demand for a thing like this.

    Cheers,

    Kris

  • TaoistTotty 246 posts 314 karma points
    Dec 21, 2013 @ 01:47
    TaoistTotty
    0

    That would be good if you could Kris.

    Thanks

    TT

  • Kris Janssen 210 posts 569 karma points c-trib
    Dec 22, 2013 @ 12:25
    Kris Janssen
    0

    OK, I'll work on it for a while.

    Watch this space!

Please Sign in or register to post replies

Write your reply to:

Draft