add tabs for repeating and attendees in the event form
This commit is contained in:
parent
217151eb9c
commit
fc70c7094a
|
@ -52,6 +52,7 @@ Calendar={
|
||||||
$('#advanced_month').change(function(){
|
$('#advanced_month').change(function(){
|
||||||
Calendar.UI.repeat('month');
|
Calendar.UI.repeat('month');
|
||||||
});
|
});
|
||||||
|
$( "#event" ).tabs({ selected: 0});
|
||||||
$('#event').dialog({
|
$('#event').dialog({
|
||||||
width : 500,
|
width : 500,
|
||||||
close : function(event, ui) {
|
close : function(event, ui) {
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
<ul>
|
||||||
|
<li><a href="#tabs-1">Eventinfo</a></li>
|
||||||
|
<li><a href="#tabs-2">Repeating</a></li>
|
||||||
|
<li><a href="#tabs-3">Attendees</a></li>
|
||||||
|
</ul>
|
||||||
|
<div id="tabs-1">
|
||||||
<table width="100%">
|
<table width="100%">
|
||||||
<tr>
|
<tr>
|
||||||
<th width="75px"><?php echo $l->t("Title");?>:</th>
|
<th width="75px"><?php echo $l->t("Title");?>:</th>
|
||||||
|
@ -56,6 +62,26 @@
|
||||||
</table>
|
</table>
|
||||||
<input type="button" class="submit" value="<?php echo $l->t("Advanced options"); ?>" onclick="Calendar.UI.showadvancedoptions();" id="advanced_options_button">
|
<input type="button" class="submit" value="<?php echo $l->t("Advanced options"); ?>" onclick="Calendar.UI.showadvancedoptions();" id="advanced_options_button">
|
||||||
<div id="advanced_options" style="display: none;">
|
<div id="advanced_options" style="display: none;">
|
||||||
|
<hr>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th width="85px"><?php echo $l->t("Location");?>:</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" style="width:350px;" size="100" placeholder="<?php echo $l->t("Location of the Event");?>" value="<?php echo isset($_['location']) ? $_['location'] : '' ?>" maxlength="100" name="location" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th width="85px" style="vertical-align: top;"><?php echo $l->t("Description");?>:</th>
|
||||||
|
<td>
|
||||||
|
<textarea style="width:350px;height: 150px;" placeholder="<?php echo $l->t("Description of the Event");?>" name="description"><?php echo isset($_['description']) ? $_['description'] : '' ?></textarea>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="tabs-2">
|
||||||
<table style="width:100%">
|
<table style="width:100%">
|
||||||
<tr>
|
<tr>
|
||||||
<th width="75px"><?php echo $l->t("Repeat");?>:</th>
|
<th width="75px"><?php echo $l->t("Repeat");?>:</th>
|
||||||
|
@ -200,23 +226,7 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<?php echo $l->t('Summary'); ?>:<span id="repeatsummary"></span>
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
|
||||||
<!-- support for attendees will be added in following versions -->
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th width="85px"><?php echo $l->t("Location");?>:</th>
|
|
||||||
<td>
|
|
||||||
<input type="text" style="width:350px;" size="100" placeholder="<?php echo $l->t("Location of the Event");?>" value="<?php echo isset($_['location']) ? $_['location'] : '' ?>" maxlength="100" name="location" />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th width="85px" style="vertical-align: top;"><?php echo $l->t("Description");?>:</th>
|
|
||||||
<td>
|
|
||||||
<textarea style="width:350px;height: 150px;" placeholder="<?php echo $l->t("Description of the Event");?>" name="description"><?php echo isset($_['description']) ? $_['description'] : '' ?></textarea>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div id="tabs-3"></div>
|
Loading…
Reference in New Issue