Problems with Calendar Form

Hi,
I’m having a problem creating a new calendar form using the new Forms. There are a couple of issues:

  1. The tick boxes for All day event and Recurrence are blank - there is nowhere to tick.
  2. When I save the new calendar item I get the following error message:
    “Invalid URL value. A URL field contains invalid data. Please check the value and try again.” but there is no field in the form that requires a URL.

Any thoughts?

Thanks,
Jim

Hi,
Any thoughts on this?

Dear Jim,
Sorry for the delay. Unfortunately, the calendar is currently not fully supported. We did some tests and these fields - All day event and Recurrence, are indeed blank.

But we couldn’t get the error with URL, New Items are saved normally, as well as edited items. The only difference I see is the Name field, is that a Person field? Are there any other modifications to the default Calendar?

Since Calendar list currently only supports classic UI, you can check out our Forms Designer app, it has full calendar support.

For these events, you must manage it manually with checkbox
i had problem also

for record it,

if (fd.spForm._formType=="New" )
		{	
				pnp.sp.web.lists.getByTitle(liste).items.add(
				{ 						
					fAllDayEvent: true,			   // or checkvalue !				
					EventDate: fd.field('EventDate').value,
 					EndDate: fd.field('EndDate').value,							
					Title:fd.field('Title').value,
					Description: fd.field('Description').value					
				})
				.then(b => 
				{
					console.log(b);
					alert('Ce congé a été enregistré');
					fd.close();
				});
		}