KonaKart Community Forum

Installation / Configuration => Programming of KonaKart => Topic started by: manue on February 03, 2010, 01:33:43 pm

Title: admindatadecriptor , order by
Post by: manue on February 03, 2010, 01:33:43 pm
hello friends!
I'm using a konakart api for recover the reviews of customers:

descriptor = new AdminDataDescriptor();
AdminReviews  adminReviews;
descriptor.setOrderBy(AdminDataDescriptor.ORDER_BY_DATE_ADDED_ASCENDING);
adminReviews = apiKonakart.getAllReviews(sessionId, descriptor);

but I get the same result when I use ORDER_BY_DATE_ADDED_ASCENDING or DESCENDING, any idea??

thanks!
Title: Re: admindatadecriptor , order by
Post by: heidi on February 03, 2010, 02:01:00 pm

Use AdminDataDescriptor.ORDER_BY_REVIEWID_ASCENDING or AdminDataDescriptor.ORDER_BY_REVIEWID_DESCENDING instead, since those Order_by_Date constants you're using aren't supported in that API call..

--Heidi