• Welcome to KonaKart Community Forum. Please login or sign up.
 
June 29, 2025, 04:35:52 pm

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Kim

1
Programming of KonaKart / How to get product options
September 21, 2011, 08:13:20 am
Hi friends,

How can i get the product options, now I'm using:

ProductIf product = (ProductIf)request.getAttribute("product");
OptionIf []opts = product.getOpts();
for(OptionIf opt : opts){
System.out.println(opt.getValue());
System.out.println(opt.getName());
}

It seems not very good, because I just get the product option name & value list. can't get option value by name and can't get formattedValueIncTax & formattedValueExTax.

I check konakart demo code, find out that prodOptionContainer also can get the product option, how can i use it?

Thanks.
2
Programming of KonaKart / Re: Get Product By Id
September 19, 2011, 10:01:02 am
Thank you very much!
3
Programming of KonaKart / Get Product By Id
September 16, 2011, 08:36:18 am
Hi friends,

Is there any function to get product by its id?

thx!
4
Programming of KonaKart / KK developer guide
September 07, 2011, 03:02:57 am
Hi guys,

Do you have KK developer guide? Is there any way i can download it?

Thanks.
5
Hi guys,

Is there any way to get Reviews list by display verified buyers reviews/ total reviews submitted?
I checked REVIEW Table, see a field named STATE, how can i use it.

Thanks.