File modules/cms/ui/themes/default/html/views/grouplist/edit.tpl.src.xml

Last commit: Mon Mar 8 15:04:16 2021 +0100	Jan Dankert	UI Fixes: Table filter should not hide the table header; open actual object in navigation tree; load dialog name from link text.
1 <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openrat.de/template ../../../../../../../template_engine/components/template.xsd"> 2 <table> 3 <row header="true"> 4 <column header="true"> 5 <text class="table-column-auto" value="${message:name}"/> 6 </column> 7 <column class="table-column-action" header="true" /> 8 </row> 9 <list list="${el}" extract="true"> 10 <row class="data"> 11 <column class="act-clickable"> 12 <link type="open" id="${id}" name="${name}" action="group"> 13 <image action="group"/> 14 <text value="${name}" /> 15 </link> 16 </column> 17 <column> 18 <part class="button,button--active-on-hover,toolbar-icon,row--on-hover"> 19 <image class="menu-icon" menu="more"/> 20 <part class="dropdown,button-value"> 21 <part 22 class="dropdown-entry,act-clickable"> 23 <link type="open" id="${id}" title="${message:menu_open}" action="group"> 24 <image method="switch"/> 25 <text class="dropdown-text" value="${message:menu_open}"/> 26 </link> 27 </part> 28 <part 29 class="dropdown-entry,act-clickable"> 30 <link type="dialog" id="${id}" title="${message:menu_info_desc}" action="group" subaction="info"> 31 <image method="info"/> 32 <text class="dropdown-text" value="${message:menu_info}"/> 33 </link> 34 </part> 35 <part 36 class="dropdown-entry,act-clickable"> 37 <link type="dialog" id="${id}" title="${message:menu_prop_desc}" action="group" subaction="prop"> 38 <image method="prop"/> 39 <text class="dropdown-text" value="${message:menu_prop}"/> 40 </link> 41 </part> 42 <part 43 class="dropdown-entry,act-clickable"> 44 <link type="dialog" id="${id}" title="${message:menu_memberships_desc}" action="group" subaction="memberships"> 45 <image method="memberships"/> 46 <text class="dropdown-text" value="${message:menu_memberships}"/> 47 </link> 48 </part> 49 </part> 50 </part> 51 52 </column> 53 </row> 54 </list> 55 </table> 56 57 <part class="button-knob,act-clickable"> 58 <link type="dialog" subaction="add"> 59 <image method="add"/> 60 <text value="${message:add}"/> 61 </link> 62 </part> 63 </output>
Download modules/cms/ui/themes/default/html/views/grouplist/edit.tpl.src.xml
History Mon, 8 Mar 2021 15:04:16 +0100 Jan Dankert UI Fixes: Table filter should not hide the table header; open actual object in navigation tree; load dialog name from link text. Mon, 8 Mar 2021 01:24:06 +0100 Jan Dankert New: Action menu on many lists; tables have now a fixed layout Thu, 19 Nov 2020 12:36:44 +0100 Jan Dankert Fix: nextSubAction() is depracated and should not be used.