I am facing an issue in getting all the events from native.Only few of the events for a given date are getting listed.The issue exists in all the versions of device.
The code used to get the eventlist is as below :
EventList eventList = (EventList) PIM.getInstance().openPIMList(
PIM.EVENT_LIST, PIM.READ_ONLY);
Enumeration events = eventList.items();
while (events.hasMoreElements()) {
Event event = (Event) events.nextElement();
}
Why am i not getting the entire list in this device what is wrong over here ?