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

Last commit: Tue Dec 7 00:16:02 2021 +0100	dankert	New: Enter in Search field will open a dialog for the view.
1 <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 xsi:schemaLocation="http://www.openrat.de/template ../../../../../../../template_engine/components/template.xsd"> 3 <form method="GET" subaction="edit" label="${message:search}"> 4 <group title="${message:SEARCH}" collapsible="false"> 5 <fieldset label="${message:value}"> 6 <input name="text" hint="${message:search}"/> 7 <hidden name="repeat" default="1"/> 8 </fieldset> 9 </group> 10 11 <group title="${message:OPTIONS}" open="false"> 12 <fieldset label="${message:search_prop}"> 13 <checkbox label="${message:id}" name="oid"/> 14 <checkbox label="${message:name}" name="name"/> 15 <checkbox label="${message:filename}" name="filename"/> 16 <checkbox label="${message:description}" name="description"/> 17 <checkbox label="${message:content}" name="content"/> 18 </fieldset> 19 </group> 20 21 <group title="${message:search_result}" collapsible="false"> 22 <table> 23 <row header="true"> 24 <column header="true"> 25 <text value="${message:NAME}"/> 26 </column> 27 <column header="true"> 28 <text value="${message:LASTCHANGE}"/> 29 </column> 30 </row> 31 <list list="${result}" extract="true"> 32 <row class="data"> 33 <column class="act-clickable"> 34 <link type="open" action="${type}" name="${name}" id="${id}"> 35 <image action="${type}"/> 36 <text value="${name}" title="${desc}"/> 37 </link> 38 </column> 39 <column> 40 <date date="${lastchange_date}"/> 41 </column> 42 </row> 43 </list> 44 </table> 45 </group> 46 </form> 47 </output>
Download modules/cms/ui/themes/default/html/views/search/edit.tpl.src.xml
History Tue, 7 Dec 2021 00:16:02 +0100 dankert New: Enter in Search field will open a dialog for the view. Wed, 21 Oct 2020 00:26:06 +0200 Jan Dankert Using fieldsets in all templates (replacing the old '') Sat, 10 Oct 2020 01:29:41 +0200 Jan Dankert Refactoring: Only using CSS classes with the 'or-'-prefix. Sat, 16 May 2020 01:08:40 +0200 Jan Dankert Refactoring: Switching the ValueExpressions in the templates to the new VariableResolver for supporting nested variables like ${message:prefix_${key}}. Sun, 23 Feb 2020 23:21:22 +0100 Jan Dankert Fix: Path to template.xsd has changed on the last refactoring. Sun, 23 Feb 2020 04:01:30 +0100 Jan Dankert Refactoring with Namespaces for the cms modules, part 1: moving.