x x x
x
Only portrait mode is currently supported - please rotate your device.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: confluence admins can see offline events

...

ConfiForms (FormView) Registrations Control
formNamecreateEvent
presetValuesnotify=true
embeddedtrue



saveFormContainerINLINE

custom-buttonsaveFormButtonSave




flex-direction: column;questionContainerINLINE



entryNameINLINE



entryNameInputINLINE


name





entryStartTimeINLINE


startDate




entryEndTimeINLINE


endDate






entryCatLocINLINE



entryCategoryINLINE


category







entrySummaryINLINE



entryProgramentryInputINLINE


program




entryAgendaentryInputINLINE


agenda






entrySponsorsentryInputINLINE


sponsors




flex-direction:column;entrySponsorImagesINLINE




sponsorImage1INLINE
















entryImageOrganizerentryInputINLINE




flex-direction: column; display: none;imageOrganizer

display:none;currentOrganizerINLINE

trueflex-direction: column; display: none;currentImageOrganizertrue






entrybannerImageentryInputINLINE




flex-direction: column; display: none;bannerImage


display: none !important; currentBannerImageINLINE

trueflex-direction: column; currentBannerImagetrue





INLINEconfluence-administrators



entryOptionsINLINE






entryZoomAccountentryInputINLINE


zoomAccount




entryZoomPasswordentryInputINLINE


zoomPassword




entryZoomLinkentryInputINLINE


watchLiveEvent




entryStreamLinkentryInputINLINE


streamLink




entryRecordedLinkentryInputINLINE


recordedLink




entryMeetingIdentryInputINLINE


meetingId




entryMeetingPasswordentryInputINLINE


meetingPass




entryTopicIdentryInputINLINE


topicId




entryRTMPUrlentryInputINLINE


rtmpUrl




entryRTMPKeyentryInputINLINE


rtmpKey





entryJiraQueryentryInputINLINE


jiraQuery









entryCollabSponsorINLINE



entryCollaboratorsentryInputINLINE


cohosts




display-noneINLINE

rsvptrue






entryCollabSponsorINLINE



flex-direction:row;entryInputINLINE


notify






display: none;INLINE


flex-direction: column; display: none;sponsorimage1

display:none;currentSponsor1INLINE


trueflex-direction: column; display: none; currentSponsorimage1


flex-direction: column; display: none;sponsorimage2


display:none;currentSponsor2INLINE

trueflex-direction: column; display: none;currentSponsorimage2true


flex-direction: column; display: none;sponsorimage3


display:none;currentSponsor3INLINE

trueflex-direction: column; display: none;currentSponsorimage3true






INLINEconfluence-administrators

offline


display-noneINLINE

pageName

formIdtrue

RSVPCount

countryCode

font-size: var(--font-size-s); width: 100%;round

sequence

currentName

startDateTimestamp

endDateTimestampoffline







HTML
<script>
/* Makes the fields for the dates larger */
$('#i_endDate').attr('style', '');
$('#i_startDate').attr('style', '');
</script>
<script>
$("#saveFormButton .my-button").on("click", function(){
	$('.my-button').prop('disabled', true);
	$("button.my-create-dialog-create-button.aui-button.aui-button-primary.save-cf-btn").click();              
    $("#action-errors-confiform").waitUntilExists(function () {
		$('.my-button').prop('disabled', false);
		window.scrollTo({top: 0, behavior: 'smooth'});
     });
	return false;
});
/*
$('#i_country').prop('disabled', true);
$('#i_round').prop('disabled', true);*/

</script>

<script>
$("#i_RSVPCount").waitUntilExists(() => {
	$("#i_RSVPCount").val(0);
})

$("#i_sequence").waitUntilExists(() => {
	console.log("setting sequence val to 0");
	$("#i_sequence").val(0);
})
</script>

<script>
const calendar = {
  'January':'Jan',
  'February':'Feb',
  'March':'Mar',
  'April':'Apr',
  'May':'May',
  'June':'Jun',
  'July':'Jul',
  'August':'Aug',
  'September':'Sep',
  'October':'Oct',
  'November':'Nov',
  'December':'Dec'  
}

const formatDateLong = d => {
  const monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
  const dayNames = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];

  var hh = d.getHours(); 
  var m = d.getMinutes();
  var s = d.getSeconds();
  var dd = "am";
  var h = hh;
  if (h >= 12) {
    h = hh-12;
    dd = "pm";
  }
  if (h == 0) {
    h = 12;
  }
  m = m<10?"0"+m:m;
  s = s<10?"0"+s:s;

  var strTime = h+":"+m+" "+dd
  return dayNames[d.getDay()] + ", " + monthNames[d.getMonth()] + " " + d.getDate() + " " + d.getFullYear() + ", " + strTime;
}

</script>

...