http://ofbiz.116.s1.nabble.com/How-to-Create-Product-Properties-or-Details-tp139281p139288.html
It seems rather good but what do you exactly mean (want t to know ?) when you say "the right method to edit files in future" ?
>
> hi jacopo,
>
> i was able to get this done. i feel pretty proud of this, this is my first
> step towards learning ofbiz.
>
> i made the following additions:
>
>
> 1) In order/webapp/ordermgr/WEB-INF/actions/entry/catalog/productdetail.bsh
>
> // get the product attribute(s)
> attribute = product.getRelated("ProductAttribute");
> context.put("ProductAttribute", attribute);
>
> 2) In
> component://order/webapp/ordermgr/entry/catalog/marketplace_productdetail.ftl
>
> <#-- attributes of product -->
>
> <#if ProductAttribute?has_content>
>
> <#list ProductAttribute as ProductAttributes>
> <div class="tabletext">
> ${ProductAttributes.attrName}: ${ProductAttributes.attrValue}</div>
> </#list>
> </#if>
> <#-- attributes of product END -->
>
> I will appreciate if you just let me know if this is the right method to
> edit files in future, or there is another better way.
>
> Thanks
>
> rohti
> --
> View this message in context:
http://www.nabble.com/How-to-Create-Product-Properties-or-Details-tf1634919.html#a5484153> Sent from the OFBiz - User forum at Nabble.com.