mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:29 +01:00
WIP Mail REST API: calendar quick-add show title required client-side
This commit is contained in:
parent
4a7e5824c3
commit
a379df8aeb
@ -13,11 +13,11 @@
|
||||
<rows>
|
||||
<row class="dialogHeader" height="28">
|
||||
<et2-appicon></et2-appicon>
|
||||
<et2-textbox id="title" maxlength="255" tabindex="1" class="et2_required" span="4" placeholder="Title"></et2-textbox>
|
||||
<et2-textbox id="title" maxlength="255" tabindex="1" required="true" span="4" placeholder="Title"></et2-textbox>
|
||||
</row>
|
||||
<row class="dialogHeader2" height="28">
|
||||
<et2-description for="start" value="Start" width="88"></et2-description>
|
||||
<et2-date-time id="start" class="required" onchange="app.calendar.edit_start_change" required="1"></et2-date-time>
|
||||
<et2-date-time id="start" onchange="app.calendar.edit_start_change" required="true"></et2-date-time>
|
||||
<et2-description for="duration" value="Duration" id="calendar_edit_duration"></et2-description>
|
||||
<et2-select statustext="Duration of the meeting" id="duration" onchange="app.calendar.set_enddate_visibility" noLang="1" emptyLabel="Use end date"></et2-select>
|
||||
<et2-date-time id="end" onchange="app.calendar.edit_update_participant" freeMinuteEntry="true"></et2-date-time>
|
||||
@ -25,8 +25,8 @@
|
||||
</rows>
|
||||
</grid>
|
||||
<et2-button statustext="saves the changes made" label="Save" id="button[save]" slot="footer" default="true"></et2-button>
|
||||
<et2-button statustext="Full edit dialog" label="Edit" id="button[edit]" slot="footer"></et2-button>
|
||||
<et2-button statustext="Close the window" label="Cancel" id="button[cancel]" slot="footer"></et2-button>
|
||||
<et2-button statustext="Full edit dialog" label="Edit" id="button[edit]" noValidation="true" slot="footer"></et2-button>
|
||||
<et2-button statustext="Close the window" label="Cancel" id="button[cancel]" noValidation="true" slot="footer"></et2-button>
|
||||
<et2-checkbox label="Always use full edit dialog" id="new_event_dialog" statustext="Always use the full edit dialog, not this little dialog" onchange="egw.set_preference('calendar',widget.id,widget.get_value() ? 'edit' : 'add');" slot="footer" align="right"></et2-checkbox>
|
||||
</template>
|
||||
</overlay>
|
Loading…
Reference in New Issue
Block a user