mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
7c55d3bdb3
- using duration selectbox now in edit too (incl. "use end date" to give longer/other durations)
84 lines
2.7 KiB
XML
84 lines
2.7 KiB
XML
<?xml version="1.0"?>
|
|
<!-- $Id$ -->
|
|
<overlay>
|
|
<template id="calendar.freetimesearch.rows" template="" lang="" group="0" version="1.0.1.001">
|
|
<grid>
|
|
<columns>
|
|
<column/>
|
|
<column/>
|
|
<column/>
|
|
<column/>
|
|
</columns>
|
|
<rows>
|
|
<row class="th">
|
|
<description value="Date"/>
|
|
<description value="Time"/>
|
|
<description value="Select"/>
|
|
<description value="Enddate"/>
|
|
</row>
|
|
<row class="row">
|
|
<date options=",16" id="${row}[start]" readonly="true"/>
|
|
<menulist>
|
|
<menupopup no_lang="1" id="${row}[start]" statustext="select a time"/>
|
|
</menulist>
|
|
<button label="Select" id="select[$row]" statustext="use the selected time and close the popup"/>
|
|
<date-time id="${row}[end]" readonly="true"/>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
</template>
|
|
<template id="calendar.freetimesearch" template="" lang="" group="0" version="1.3.001">
|
|
<grid>
|
|
<columns>
|
|
<column/>
|
|
<column/>
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<description class="size120b" value="Freetime Search"/>
|
|
<description class="redItalic" no_lang="1" id="msg"/>
|
|
</row>
|
|
<row>
|
|
<description value="Startdate / -time"/>
|
|
<date-time id="start" statustext="Startdate and -time of the search"/>
|
|
</row>
|
|
<row>
|
|
<description value="Duration"/>
|
|
<hbox>
|
|
<menulist>
|
|
<menupopup no_lang="1" id="duration" statustext="Duration of the meeting" onchange="set_style_by_class('table','end_hide','visibility',this.value == '' ? 'visible' : 'hidden');" options="Use end date"/>
|
|
</menulist>
|
|
<date-time id="end" statustext="Enddate / -time of the meeting, eg. for more then one day" class="end_hide"/>
|
|
</hbox>
|
|
</row>
|
|
<row>
|
|
<description value="Timeframe"/>
|
|
<hbox>
|
|
<date-houronly id="start_time" statustext="Timeframe to search"/>
|
|
<description value="til"/>
|
|
<date-houronly id="end_time" statustext="Timeframe to search"/>
|
|
<description value="Weekdays"/>
|
|
<listbox type="select-dow" rows="3" id="weekdays" statustext="Weekdays to use in search"/>
|
|
</hbox>
|
|
</row>
|
|
<row>
|
|
<button label="New search" id="search" statustext="new search with the above parameters"/>
|
|
<hbox>
|
|
<menulist>
|
|
<menupopup no_lang="1" id="search_window" statustext="how far to search (from startdate)"/>
|
|
</menulist>
|
|
<button id="cancel" label="Cancel" statustext="Close the window" onclick="window.close();"/>
|
|
</hbox>
|
|
</row>
|
|
<row>
|
|
<template content="freetime" span="all" id="calendar.freetimesearch.rows"/>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
<styles>
|
|
.size120b { text-size: 120%; font-weight: bold; }
|
|
.redItalic { color: red; font-style: italic; }
|
|
.end_hide { visibility: hidden; }
|
|
</styles>
|
|
</template>
|
|
</overlay> |