[gen] Fixed groups with style 'tabs'; reused the same tabs for representing phases; pages and phases are now outside the portlet, rendered horizontally below the breadcrumb; methods getSupBreadCrumb and getSubBreadCrumb can now be defined on every gen-class to customize what is shown above and below the breadcrumb (=title with a prefix) on view layouts (those methods are similar to getSubTitle and getSupTitle when displaying lists of objects).
This commit is contained in:
parent
cee7b49e3c
commit
7adbc7e4bc
15 changed files with 143 additions and 75 deletions
|
@ -749,6 +749,14 @@ class ToolMixin(BaseMixin):
|
|||
# advanced search.
|
||||
return klass.searchAdvanced.isShowable(klass, self.appy())
|
||||
|
||||
def portletBottom(self, klass):
|
||||
'''Is there a custom zone to display at the bottom of the portlet zone
|
||||
for p_klass?'''
|
||||
if not hasattr(klass, 'getPortletBottom'): return ''
|
||||
res = klass.getPortletBottom(self.appy())
|
||||
if not res: return ''
|
||||
return res
|
||||
|
||||
def getQueryUrl(self, contentType, searchName, startNumber=None):
|
||||
'''This method creates the URL that allows to perform a (non-Ajax)
|
||||
request for getting queried objects from a search named p_searchName
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue