Page 1 of 1

Sku List Grid, Name doesn't show?

Posted: Mon May 13, 2013 1:55 pm
by RapidTransit
When a Sku name is null, with BundleSkuSearchDataSourceFactory() is the default behavior to display null or the name from the default Sku name?

SkuImpl

Code: Select all

   
@Override
    public String getName() {
        if (name == null && hasDefaultSku()) {
            return lookupDefaultSku().getName();
        }
       
        return name;
    }


Tells me that it should display the default Sku's name, but doesn't.

Re: Sku List Grid, Name doesn't show?

Posted: Tue May 14, 2013 7:22 am
by denis
Hi,

You should read this post : viewtopic.php?f=13&t=1591