2007/5/21, Jim Theodoridis <[EMAIL PROTECTED]>:
Because i allready have a template like this <definition name=".mainLayout" path="/tiles/layouts/templates/admin/blackplazza_admin/mainLayout.jsp"> <put name="title" value="" /> <put name="header" value=".header" /> <put name="mainMenu" value="/tiles/layouts/templates/admin/blackplazza_admin/mainMenu.jsp" /> <put name="toolbar" value="" /> <put name="message" value="" /> <put name="body" value="" /> <put name="footer" value="/tiles/footers/admin/footer.jsp" /> </definition> ....................................................................................... <definition name=".content" extends=".mainLayout"> <put name="title" value="Διαχείρηση Άρθρων" /> <put name="toolbar" value=".toolbar.content" /> </definition> and i want the toolbar definition not to dispayed at .content.before.delete
I see, then in <tiles:insert>, when you insert the "toolbar" attribute, add: ignore="true" This will skip the missing resource. HTH Antonio