Hi,
I having difficulty in getting results from a full text event query
search on searching event content.
I have added events using the api and setting the content
programatically. This is fine and I can see the created events in the
calendar - including the content when I view the actual event from the
link in the calendar. However, when I search using the same values for
criteria that I have added to the event content thus...
$gdataCal = new Zend_Gdata_Calendar($this->getClient());
$query = $gdataCal->newEventQuery();
$query->setUser($this->user);
$query->setVisibility('private');
$query->setProjection('full');
$query->setQuery($queryString);
$eventFeed = $gdataCal->getCalendarEventFeed($query);
I don't get any results.
Searching on other text that is in the title does work however. The
api description
http://code.google.com/apis/calendar/developers_guide_php.html#RetrievingWithQuery
states "A full-text query searches both the title and content of an
event" so anyone know why this doesn't work???
(a search on the same criteria using the standard calendar search does
find these documents).
Thanks
Conrad
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---