Page 1 of 1

I can't load item

Posted: Mon Jul 08, 2013 6:54 am
by hura
Hi,
I've tried to load category items.
In the category.html page, I changed the code loading products with this:

Code: Select all

         
             <ul id="categories" class="group">
                <li th:each="category : ${categories}" th:object="${category}" th:include="catalog/partials/categoryListItem"   class="product_container"></li>
            </ul> 


Then I created a categoryListItem.html page with this conten:

Code: Select all

<div class="content">
    <div class="title" th:text="*{name}"></div>
    <p th:text="*{id}"></p>
    <p th:utext="*{description}"></p>
</div>



But when I run, nothing displayed. Could you explain?
Thanks!

Re: I can't load item

Posted: Mon Jul 08, 2013 9:42 am
by phillipuniverse
Instead of th:object try th:with

Re: I can't load item

Posted: Tue Jul 09, 2013 12:42 am
by hura
Thanks for your reply but it doesn't work.

Do I have to do anything else, such as writing java code?