• Welcome to KonaKart Community Forum. Please login or sign up.
 

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 - bharatkasodariya

61
does Solr feature work with konakart?
62
I have set the tag in products and categories. Tag works ok without Solr. When Solr is enabled Its not showing any Tag filter on the page.
63
is there anything wrong in data?
64
First of all, Thanks Team Konakart for such a nice system.

I am facing one issue in sorting and pagination when Solr is enabled . I just tried to run app with Solr Search Engine.For that, I enabled Solr Search Engine from the admin and added product in solr search engine. When I try to sort the product with Solr enabled config, getting the below exception.
java.lang.NullPointerException
        at com.konakart.al.CategoryMgr.getCatMenuList(Unknown Source)
        at com.konakart.al.CategoryMgr.getCatMenuList(Unknown Source)
        at com.konakart.al.ProductMgr.manageCurrentCategories(Unknown Source)
        at com.konakart.al.ProductMgr.fetchProducts(Unknown Source)
        at com.konakart.al.ProductMgr.orderCurrentProds(Unknown Source)
        at com.konakart.actions.SortProductAction.execute(SortProductAction.java
:73)
It works ok when Solr is disabled.
65
Is it possible?
66
I needed all categories including invisible for some page. If I make it visible then it will come in tree which I don't want. That's why I suggested to put some other method  which can return all categories. Will get it by executing query.
67
I see there is no option for creating product on frontend. I think it can be done by using admin. How can I use admin from frontend.
68
I want to create/update product from in frontend from the backend process. how can we do that?
69
I have to read all categories on the front page including invisible. Can add some method in manager which can return all categories including invisible categories. I think that can be helpful in future.
70
Programming of KonaKart / Re: Extends CustomerMgr
June 12, 2013, 03:34:00 pm
Sorry I couldn't find action like registration or update for customer in custom engine.
I am looking for the customer registration, update and delete action.
71
Programming of KonaKart / Extends CustomerMgr
June 12, 2013, 11:35:44 am
I want to perform custom operation after user registration. I couldn't find any method in engine where I can put the custom code.
How can I extend CustomerMgr class to override registerCustomer method

Thanks,
Bharat
72
I want to set quantity field on the product detail page.  In current demo store it adds single item on AddotCart click no quantity field. Can you tell me how can we define quantity field on the product detail page.

Thanks,
Bharat
73
Is it possible?
74
Is it possible to call one custom method from another custom method with custom admin engine.

Below is sample of two custom class. I tried with kkAdminEng.getAdminEng()....  but didn't work

@SuppressWarnings("all")
public class DeleteProduct
{
    KKAdmin kkAdminEng = null;

    /**
     * Constructor
     */
     public DeleteProduct(KKAdmin _kkAdminEng)
     {
         kkAdminEng = _kkAdminEng;
     }

  public void deleteProduct(String sessionId, int productId) throws KKAdminException
     {               
      Sysout("deleteProduct");
                //Logic
               //Here I want to call another method deleteMiscItem which is also custom.

     }
}

@SuppressWarnings("all")
public class DeleteMiscItem
{
    KKAdmin kkAdminEng = null;

    /**
     * Constructor
     */
     public DeleteMiscItem(KKAdmin _kkAdminEng)
     {
         kkAdminEng = _kkAdminEng;
     }

     public void deleteMiscItem(String sessionId, int miTypeId) throws KKAdminException
     {               
      Sysout("deleteMiscItem");
                //Logic

     }
}
75
 I want to define new menu item and add new page in konakartadmin. How can we do that?