mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
165a71d7b3
r=varga, sr=jag, patch by Daniel Crisman <bugzilla@w.d6.org>
479 lines
26 KiB
XML
479 lines
26 KiB
XML
<?xml version="1.0"?>
|
|
<!-- ***** BEGIN LICENSE BLOCK *****
|
|
- Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
-
|
|
- The contents of this file are subject to the Mozilla Public License Version
|
|
- 1.1 (the "License"); you may not use this file except in compliance with
|
|
- the License. You may obtain a copy of the License at
|
|
- http://www.mozilla.org/MPL/
|
|
-
|
|
- Software distributed under the License is distributed on an "AS IS" basis,
|
|
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
- for the specific language governing rights and limitations under the
|
|
- License.
|
|
-
|
|
- The Original Code is OEone Calendar Code, released October 31st, 2001.
|
|
-
|
|
- The Initial Developer of the Original Code is
|
|
- OEone Corporation.
|
|
- Portions created by the Initial Developer are Copyright (C) 2001
|
|
- the Initial Developer. All Rights Reserved.
|
|
-
|
|
- Contributor(s): Garth Smedley <garths@oeone.com>
|
|
- Mike Potter <mikep@oeone.com>
|
|
- Colin Phillips <colinp@oeone.com>
|
|
- Chris Charabaruk <ccharabaruk@meldstar.com>
|
|
- ArentJan Banck <ajbanck@planet.nl>
|
|
-
|
|
- Alternatively, the contents of this file may be used under the terms of
|
|
- either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
- the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
- in which case the provisions of the GPL or the LGPL are applicable instead
|
|
- of those above. If you wish to allow use of your version of this file only
|
|
- under the terms of either the GPL or the LGPL, and not to allow others to
|
|
- use your version of this file under the terms of the MPL, indicate your
|
|
- decision by deleting the provisions above and replace them with the notice
|
|
- and other provisions required by the LGPL or the GPL. If you do not delete
|
|
- the provisions above, a recipient may use your version of this file under
|
|
- the terms of any one of the MPL, the GPL or the LGPL.
|
|
-
|
|
- ***** END LICENSE BLOCK ***** -->
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
|
|
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
|
<?xul-overlay href="chrome://calendar/content/timepicker/timepicker-overlay.xul"?>
|
|
|
|
<!-- CSS File with all styles specific to the dialog -->
|
|
<?xml-stylesheet href="chrome://calendar/skin/eventDialog.css" ?>
|
|
<?xml-stylesheet href="chrome://calendar/skin/dialogOverlay.css" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://calendar/context/datepicker/datepicker.css" ?>
|
|
<?xml-stylesheet href="chrome://calendar/context/datepicker/calendar.css" ?>
|
|
|
|
<!-- CSS for selecting contacts to invite to event -->
|
|
<?xml-stylesheet href="chrome://calendar/skin/selectAddresses.css" ?>
|
|
|
|
<!-- DTD File with all strings specific to the calendar -->
|
|
<!DOCTYPE dialog
|
|
[
|
|
<!ENTITY % dtd1 SYSTEM "chrome://calendar/locale/global.dtd" > %dtd1;
|
|
<!ENTITY % dtd2 SYSTEM "chrome://calendar/locale/calendar.dtd" > %dtd2;
|
|
<!ENTITY % dtd3 SYSTEM "chrome://calendar/locale/selectAddresses.dtd" > %dtd3;
|
|
]>
|
|
|
|
|
|
<dialog
|
|
id="calendar-new-eventwindow"
|
|
title="Calendar Event"
|
|
onload="loadCalendarEventDialog()"
|
|
buttons="accept,cancel"
|
|
ondialogaccept="return onOKCommand();"
|
|
ondialogcancel="return true;"
|
|
persist="screenX screenY"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:nc="http://home.netscape.com/NC-rdf#">
|
|
|
|
|
|
<!-- Javascript DTD To Variable -->
|
|
<script type="application/x-javascript" src="chrome://communicator/content/utilityOverlay.js"/>
|
|
|
|
<script type="application/x-javascript">
|
|
var DTD_noEmailMessage = "&ab-selectAddressesDialogNoEmailMessage.label;";
|
|
var DTD_toPrefix = "&ab-selectAddressesDialogPrefixTo.label;";
|
|
</script>
|
|
|
|
|
|
<!-- Select addresses commands -->
|
|
<commandset id="selectAddressesCommands">
|
|
<command id="addToInviteList" oncommand="addSelectedAddressesIntoInviteBucket( '', '' );" disabled="true" />
|
|
<command id="removeFromInviteList" oncommand="removeSelectedFromInviteBucket();" disabled="true" />
|
|
</commandset>
|
|
|
|
|
|
<!-- Javascript includes -->
|
|
|
|
<script type="application/x-javascript" src="chrome://global/content/strres.js"/>
|
|
<script type="application/x-javascript" src="chrome://calendar/content/dateUtils.js"/>
|
|
<script type="application/x-javascript" src="chrome://calendar/content/eventDialog.js"/>
|
|
<script type="application/x-javascript" src="chrome://calendar/content/selectAddressesDialog.js"/>
|
|
<script type="application/x-javascript" src="chrome://calendar/content/attachFile.js"/>
|
|
<!-- needed to get the default categories -->
|
|
<script type="application/x-javascript" src="chrome://calendar/content/pref/rootCalendarPref.js"/>
|
|
|
|
<!-- Data used in JS from dtd -->
|
|
|
|
<dataset>
|
|
<data id="data-event-title-new" value="&event.title.new;" />
|
|
<data id="data-event-title-edit" value="&event.title.edit;" />
|
|
<data id="onthe-text" value="&onthe-text;" />
|
|
<data id="last-text" value="&last-text;" />
|
|
<data id="ofthemonth-text" value="&ofthemonth-text;" />
|
|
</dataset>
|
|
|
|
|
|
<!-- Picker popups -->
|
|
|
|
<popup id="oe-time-picker-popup" position="after_start" oncommand="onTimePick( this )" value=""/>
|
|
|
|
<vbox id="standard-dialog-content" flex="1">
|
|
|
|
<tabbox>
|
|
<tabs>
|
|
<tab label="&newevent.newevent.tab.label;"/>
|
|
<tab label="&newevent.recurrence.tab.label;"/>
|
|
<tab label="&newevent.contacts.tab.label;" collapsed="true"/>
|
|
<tab label="&newevent.files.tab.label;" collapsed="true"/>
|
|
</tabs>
|
|
<tabpanels>
|
|
<tabpanel>
|
|
<grid>
|
|
<columns>
|
|
<column />
|
|
<column flex="1"/>
|
|
</columns>
|
|
|
|
<rows>
|
|
<!-- Title -->
|
|
<row align="center">
|
|
<hbox class="field-label-box-class" pack="end">
|
|
<label for="title-field" value="&newevent.title.label;"/>
|
|
</hbox>
|
|
<textbox id="title-field"/>
|
|
</row>
|
|
|
|
<!-- Location -->
|
|
<row align="center">
|
|
<hbox class="field-label-box-class" pack="end">
|
|
<label for="location-field" value="&newevent.location.label;"/>
|
|
</hbox>
|
|
<textbox id="location-field"/>
|
|
</row>
|
|
|
|
<!-- Start Date -->
|
|
<row align="center">
|
|
<hbox class="field-label-box-class" pack="end">
|
|
<label value="&newevent.startdate.label;"/>
|
|
</hbox>
|
|
<hbox id="start-date-box" align="center">
|
|
<datepicker id="start-date-picker" value="" ondatepick="onDatePick( this );"/>
|
|
<textbox id="start-time-text" readonly="true" value="" onmousedown="prepareTimePicker('start-time-text')" popup="oe-time-picker-popup" position="after_start"/>
|
|
<image id="start-time-button" class="event-time-button-class" onmousedown="prepareTimePicker('start-time-text')" popup="oe-time-picker-popup" position="after_start"/>
|
|
</hbox>
|
|
</row>
|
|
|
|
<!-- End Date -->
|
|
<row align="center">
|
|
<hbox class="field-label-box-class" pack="end">
|
|
<label value="&newevent.enddate.label;"/>
|
|
</hbox>
|
|
<hbox id="end-date-box" align="center">
|
|
<datepicker id="end-date-picker" value="" ondatepick="onDatePick( this );"/>
|
|
<textbox id="end-time-text" readonly="true" value="" onmousedown="prepareTimePicker('end-time-text')" popup="oe-time-picker-popup" position="after_start"/>
|
|
<image id="end-time-button" class="event-time-button-class" onmousedown="prepareTimePicker('end-time-text')" popup="oe-time-picker-popup" position="after_start"/>
|
|
</hbox>
|
|
</row>
|
|
|
|
<!-- End Time Warning -->
|
|
<row align="center">
|
|
<spacer />
|
|
<label id="end-time-warning" class="warning-text-class" value="&newevent.endtime.warning;" collapsed="true"/>
|
|
</row>
|
|
|
|
<!-- End Date Warning -->
|
|
<row align="center">
|
|
<spacer />
|
|
<label id="end-date-warning" class="warning-text-class" value="&newevent.enddate.warning;" collapsed="true"/>
|
|
</row>
|
|
|
|
|
|
<!-- All Day -->
|
|
<row align="center">
|
|
<spacer />
|
|
<checkbox id="all-day-event-checkbox" label="&newevent.alldayevent.label;" oncommand="commandAllDay()" persist="checked"/>
|
|
</row>
|
|
|
|
|
|
<!-- Description -->
|
|
<row flex="1" align="start">
|
|
<hbox class="field-label-box-class" pack="end">
|
|
<label for="description-field" value="&newevent.description.label;"/>
|
|
</hbox>
|
|
<textbox id="description-field" onkeypress="event.stopPropagation()" multiline="true" rows="3" cols="30" />
|
|
</row>
|
|
|
|
|
|
<!-- URI/URL -->
|
|
<row align="center">
|
|
<hbox class="field-label-box-class" pack="end">
|
|
<label for="uri-field" value="&newevent.uri.label;"/>
|
|
</hbox>
|
|
<hbox>
|
|
<textbox id="uri-field" type="autocomplete" searchSessions="history" flex="1"/>
|
|
<button label="&newevent.uri.visit.label;" oncommand="launchBrowser()"/>
|
|
</hbox>
|
|
</row>
|
|
|
|
|
|
<!-- Private -->
|
|
<row align="center">
|
|
<spacer />
|
|
<checkbox id="private-checkbox" checked="false" label="&newevent.private.label;"/>
|
|
</row>
|
|
|
|
|
|
<!-- Alarm -->
|
|
<row align="center">
|
|
<spacer />
|
|
<vbox>
|
|
<hbox id="alarm-box" align="center">
|
|
<checkbox id="alarm-checkbox" class="proper-align" label="&newevent.alarm.label;" checked="false" oncommand="commandAlarm()"/>
|
|
<textbox id="alarm-length-field" oninput="alarmLengthKeyDown( this )"/>
|
|
<menulist id="alarm-length-units" crop="none" labelnumber="labelplural">
|
|
<menupopup>
|
|
<menuitem label="&alarm.units.minutes;" labelplural="&alarm.units.minutes;" labelsingular="&alarm.units.minutes.singular;" value="minutes"/>
|
|
<menuitem label="&alarm.units.hours;" labelplural="&alarm.units.hours;" labelsingular="&alarm.units.hours.singular;" value="hours" />
|
|
<menuitem label="&alarm.units.days;" labelplural="&alarm.units.days;" labelsingular="&alarm.units.days.singular;" value="days"/>
|
|
</menupopup>
|
|
</menulist>
|
|
<label id="alarm-length-text" for="alarm-length-field" value="&newevent.beforealarm.label;"/>
|
|
</hbox>
|
|
|
|
<hbox id="alarm-box-email" align="center">
|
|
<spacer width="15"/>
|
|
<checkbox id="alarm-email-checkbox" label="&newevent.email.label;" checked="false" oncommand="commandAlarmEmail()"/>
|
|
<textbox type="autocomplete" searchSessions="addrbook" id="alarm-email-field" size="39" value="" />
|
|
</hbox>
|
|
</vbox>
|
|
</row>
|
|
|
|
<!-- Calendar Status -->
|
|
<row align="center">
|
|
<hbox class="field-label-box-class" pack="end">
|
|
<label value="&newevent.status.longlabel;"/>
|
|
</hbox>
|
|
<menulist id="status-field" label="&newevent.status.label;">
|
|
<menupopup id="status-menulist-menupopup">
|
|
<menuitem label="&newevent.status.tentative.label;" value="ICAL_STATUS_TENTATIVE"/>
|
|
<menuitem label="&newevent.status.confirmed.label;" value="ICAL_STATUS_CONFIRMED"/>
|
|
<menuitem label="&newevent.status.cancelled.label;" value="ICAL_STATUS_CANCELLED"/>
|
|
</menupopup>
|
|
</menulist>
|
|
</row>
|
|
|
|
<!-- Categories -->
|
|
<row align="center">
|
|
<hbox class="field-label-box-class" pack="end">
|
|
<label value="&newtodo.categories.label;"/>
|
|
</hbox>
|
|
<menulist id="categories-field" label="&newevent.category.label;">
|
|
<menupopup id="categories-menulist-menupopup">
|
|
<menuitem label="&priority.level.none;" value="0"/>
|
|
</menupopup>
|
|
</menulist>
|
|
</row>
|
|
|
|
<!-- Calendar Server -->
|
|
<row align="center">
|
|
<hbox class="field-label-box-class" pack="end">
|
|
<label id="server-field-label" value="&newevent.server.label;"/>
|
|
</hbox>
|
|
<menulist id="server-field">
|
|
<menupopup id="server-menulist-menupopup" datasources="rdf:null" ref="urn:calendarcontainer">
|
|
<template>
|
|
<rule>
|
|
<menuitem uri="rdf:*" value="rdf:http://home.netscape.com/NC-rdf#path" label="rdf:http://home.netscape.com/NC-rdf#name"/>
|
|
</rule>
|
|
</template>
|
|
</menupopup>
|
|
</menulist>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
</tabpanel>
|
|
<tabpanel>
|
|
|
|
<!-- Repeat -->
|
|
<vbox>
|
|
<hbox id="repeat-box" align="center">
|
|
<checkbox id="repeat-checkbox" class="proper-align" label="&newevent.repeat.label;" checked="false" oncommand="commandRepeat();commandUntil()"/>
|
|
<textbox id="repeat-length-field" class="cursor-pointer" disable-controller="repeat" value="1" oninput="repeatLengthKeyDown( this )"/>
|
|
|
|
<menulist crop="none" oncommand="repeatUnitCommand( this )" labelnumber="labelplural" id="repeat-length-units" disable-controller="repeat">
|
|
<menupopup>
|
|
<menuitem label="&repeat.units.days;" labelplural="&repeat.units.days;" labelsingular="&repeat.units.days.singular;" id="repeat-length-days" value="days" />
|
|
<menuitem label="&repeat.units.weeks;" labelplural="&repeat.units.weeks;" labelsingular="&repeat.units.weeks.singular;" id="repeat-length-weeks" value="weeks"/>
|
|
<menuitem label="&repeat.units.months;" labelplural="&repeat.units.months;" labelsingular="&repeat.units.months.singular;" id="repeat-length-months" value="months"/>
|
|
<menuitem label="&repeat.units.years;" labelplural="&repeat.units.years;" labelsingular="&repeat.units.years.singular;" id="repeat-length-years" value="years" />
|
|
</menupopup>
|
|
</menulist>
|
|
</hbox>
|
|
|
|
<hbox id="repeat-extenstions-week" disabled="true" disable-controller="repeat" collapsed="false" align="center">
|
|
<checkbox disable-controller="repeat" class="repeat-day-class" label="&day.1.Ddd;" id="advanced-repeat-week-0" value="0" checked="false" />
|
|
<checkbox disable-controller="repeat" class="repeat-day-class" label="&day.2.Ddd;" id="advanced-repeat-week-1" value="1" checked="false" />
|
|
<checkbox disable-controller="repeat" class="repeat-day-class" label="&day.3.Ddd;" id="advanced-repeat-week-2" value="2" checked="false" />
|
|
<checkbox disable-controller="repeat" class="repeat-day-class" label="&day.4.Ddd;" id="advanced-repeat-week-3" value="3" checked="false" />
|
|
<checkbox disable-controller="repeat" class="repeat-day-class" label="&day.5.Ddd;" id="advanced-repeat-week-4" value="4" checked="false" />
|
|
<checkbox disable-controller="repeat" class="repeat-day-class" label="&day.6.Ddd;" id="advanced-repeat-week-5" value="5" checked="false" />
|
|
<checkbox disable-controller="repeat" class="repeat-day-class" label="&day.7.Ddd;" id="advanced-repeat-week-6" value="6" checked="false" />
|
|
</hbox>
|
|
|
|
<hbox id="repeat-extenstions-month" diabled="true" collapsed="true" align="center">
|
|
<vbox align="center">
|
|
<radiogroup id="advanced-repeat-month" disable-controller="repeat">
|
|
<radio disable-controller="repeat" id="advanced-repeat-dayofmonth" label="&newevent.advanced.repeat.dayofmonth.label;" selected="true"/>
|
|
<radio disable-controller="repeat" id="advanced-repeat-dayofweek" label="&newevent.advanced.repeat.dayofweek.label;"/>
|
|
<radio disable-controller="repeat" id="advanced-repeat-dayofweek-last" label="&newevent.advanced.repeat.lastdayofweek.label;" disabled="true"/>
|
|
</radiogroup>
|
|
</vbox>
|
|
</hbox>
|
|
|
|
<spacer height="10" />
|
|
|
|
<hbox align="center">
|
|
<spacer class="repeat-left-spacer" />
|
|
<radiogroup id="repeat-until-group" disable-controller="repeat">
|
|
<radio id="repeat-forever-radio" disable-controller="repeat" label="&newevent.forever.label;" oncommand="commandUntil()"/>
|
|
<vbox id="repeat-end-box" align="center">
|
|
<hbox>
|
|
<radio id="repeat-numberoftimes-radio" disable-controller="repeat" label="&newevent.numberoftimes.label;" oncommand=""/>
|
|
<textbox id="repeat-numberoftimes-textbox" disable-controller="repeat"/>
|
|
</hbox>
|
|
</vbox>
|
|
<vbox id="repeat-end-box" align="center">
|
|
<hbox>
|
|
<radio id="repeat-until-radio" disable-controller="repeat" label="&newevent.until.label;" oncommand="commandUntil()"/>
|
|
<spacer id="until-spacer"/>
|
|
<datepicker id="repeat-end-date-picker" value="" ondatepick="commandUntil()"/>
|
|
</hbox>
|
|
<label id="repeat-time-warning" class="warning-text-class" value="&newevent.recurend.warning;" collapsed="true"/>
|
|
</vbox>
|
|
</radiogroup>
|
|
</hbox>
|
|
|
|
<hbox align="center">
|
|
<spacer class="repeat-left-spacer" />
|
|
<groupbox>
|
|
<caption label="&newevent.exceptions.caption;"/>
|
|
<grid>
|
|
<columns>
|
|
<column flex="1"/>
|
|
<column/>
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<hbox align="center">
|
|
<datepicker id="exceptions-date-picker" disable-controller="repeat" value=""/>
|
|
</hbox>
|
|
<button id="exception-add-button" label="&newevent.addexceptions.label;" disable-controller="repeat" oncommand="addException()"/>
|
|
</row>
|
|
<row>
|
|
<listbox id="exception-dates-listbox" disable-controller="repeat" rows="4"/>
|
|
<vbox>
|
|
<button label="&newevent.deleteexceptions.label;" disable-controller="repeat" oncommand="removeSelectedExceptionDate()"/>
|
|
</vbox>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
</groupbox>
|
|
</hbox>
|
|
</vbox>
|
|
<!-- /Repeat -->
|
|
</tabpanel>
|
|
|
|
<!-- Contacts panel -->
|
|
<tabpanel orient="vertical" collapsed="true">
|
|
<!-- Invite -->
|
|
<vbox collapsed="true">
|
|
<hbox id="invite-box" align="center">
|
|
<checkbox id="invite-checkbox" label="&newevent.invite.label;" checked="false" oncommand="commandInvite()"/>
|
|
<textbox id="invite-email-field" size="39" disabled="true"/>
|
|
</hbox>
|
|
</vbox>
|
|
|
|
<vbox flex="1">
|
|
<hbox id="topBox" align="center">
|
|
<label value="&ab-selectAddressesDialogLookIn.label;" />
|
|
|
|
<!-- Address book chooser -->
|
|
<menulist id="addressBookList" oncommand="onChooseAddressBookEventDialog( this );">
|
|
<menupopup id="addressBookList-menupopup" ref="moz-abdirectory://" datasources="rdf:addressdirectory">
|
|
<template>
|
|
<rule nc:IsMailList="false">
|
|
<menuitem uri="..."
|
|
label="rdf:http://home.netscape.com/NC-rdf#DirName"
|
|
value="rdf:http://home.netscape.com/NC-rdf#DirUri"/>
|
|
</rule>
|
|
</template>
|
|
</menupopup>
|
|
</menulist>
|
|
</hbox>
|
|
|
|
<hbox flex="1">
|
|
|
|
<!-- Existing addresses -->
|
|
<vbox id="resultsBox" flex="4">
|
|
<label value=" " />
|
|
<tree id="abResultsTree" flex="1" persist="height" hidecolumnpicker="true" onclick="this.contactsTree.onClick( event );" ondblclick="this.contactsTree.onDblClick( event );">
|
|
|
|
<treecols id="recipientTreeCols">
|
|
<treecol id="GeneratedName" sort-field="GeneratedName" class="sortDirectionIndicator" list-view-sort-field="true"
|
|
persist="ordinal width" flex="1" label="&ab-selectAddressesDialogNameColumn.label;" primary="true"/>
|
|
|
|
<splitter class="tree-splitter"/>
|
|
|
|
<treecol id="PrimaryEmail" sort-field="PrimaryEmail" class="sortDirectionIndicator" list-view-sort-field="true"
|
|
persist="ordinal width" flex="1" label="&ab-selectAddressesDialogEmailColumn.label;"/>
|
|
</treecols>
|
|
|
|
<treechildren />
|
|
|
|
</tree>
|
|
</vbox>
|
|
|
|
<!-- Add and remove buttons -->
|
|
<vbox id="addToBucketButtonBox">
|
|
<spacer flex="1" />
|
|
<button id="toButton" label="&ab-selectAddressesDialogInvite.label;" command="addToInviteList" />
|
|
<spacer />
|
|
<button id="remove" label="&ab-selectAddressesDialogUninvite.label;" class="dialog" command="removeFromInviteList" />
|
|
<spacer flex="1" />
|
|
</vbox>
|
|
|
|
<!-- Recipient list -->
|
|
<vbox id="bucketBox" flex="1">
|
|
<label value="&ab-selectAddressesDialogInviteList.label;"/>
|
|
|
|
<tree id="addressBucket" flex="1" hidecolumnpicker="true" onclick="selectEventRecipient( this );">
|
|
<treecols>
|
|
<treecol id="addressCol" flex="1" hideheader="true"/>
|
|
</treecols>
|
|
|
|
<treechildren id="bucketBody" flex="1"/>
|
|
</tree>
|
|
</vbox>
|
|
|
|
</hbox>
|
|
</vbox>
|
|
</tabpanel>
|
|
|
|
<tabpanel>
|
|
<listbox id="attachmentBucket" flex="1" rows="8"
|
|
onkeypress="if (event.keyCode == 8 || event.keyCode == 46) RemoveSelectedAttachment();"
|
|
onclick="AttachmentBucketClicked(event);"
|
|
ondragover="nsDragAndDrop.dragOver(event, attachmentBucketObserver);"
|
|
ondragdrop="nsDragAndDrop.drop(event, attachmentBucketObserver);"
|
|
ondragexit="nsDragAndDrop.dragExit(event, attachmentBucketObserver);"/>
|
|
<vbox>
|
|
<button onclick="AttachFile()" label="&newevent.choosefile.label;"/>
|
|
<button onclick="removeSelectedAttachment()" label="&newevent.removeselectedfile.label;"/>
|
|
<spacer flex="1"/>
|
|
</vbox>
|
|
</tabpanel>
|
|
</tabpanels>
|
|
</tabbox>
|
|
|
|
</vbox> <!-- standard-dialog-content -->
|
|
</dialog>
|