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.
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!
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.
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:
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
Version 1.1 will be more reliable during the installation..
We're changing the data access layer.
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!
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.
Is ETA still end of July?
Very much looking forward to this package, and a perfect solution for my client.
Best regards Johan
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.
Any update on this?
Can I help with anything?
Appreciate the offer. Single developer here. It's scheduled.
Is there a way to get the database updated manually so that version 1 can be got working?
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.
Any update on this bug fix?
I have a release ready to go.. I'll package it up get it online.
Hey Daniel, can you post a link on here once the package is online?
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!
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:
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
That would be good if you could Kris.
Thanks
TT
OK, I'll work on it for a while.
Watch this space!
is working on a reply...