We are creating a calendar booking system within our application.

When a user creates an event we store the new event's UID into a local database that we've created.

The list of events is then pulled in from the calendar by filtering out the events with the stored UIDs in our database.

Simple? Well, we seem to be able to filter on any other field of an appointment except for the UID!

Code example would be:

var apptFilter = new blackberry.find.FilterExpression("uid", "==", id);
var appt = new blackberry.pim.Appointment.find(apptFilter);

Where 'id' is the UIDs taken from our database.

appt is then the appointment we've had returned.

So, any ideas as to why this works for anything but the UID of an appointment?!?

Thanks!

link|improve this question
We managed to find that this was a bug in OS5 but not OS6+. So what we did was to set a summary tag to each appointment, then filter on that then UID on the returned appointments. A hassle way to work but it's working :) – Dave Cates Jan 30 at 13:59
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.