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!