I have a requirement where I need to save data to a SharePoint event list using a modal form and display the data as cards on a webpage. However, I’m encountering an issue with date formatting. The dates are not displaying correctly.
I have tried several approaches, including:
- Saving the date in UTC format and converting it to local time when displaying.
- Using ISO format for date storage and display.
Despite these efforts, the dates are still not showing correctly. Has anyone faced a similar issue or have suggestions on how to resolve this?
Thank you in advance for your help!
$().SPServices( { operation: "UpdateListItems", async: false, webURL: webURL, batchCmd: "New", listName: "Events", valuepairs: [ ["Title", Title], ["EventDate", EventDate], ["EndDate", EndDate], ["Location", Location], ["Category", Category], ["Description", Description] ], completefunc: function(xData, Status) { EventId = $(xData.responseXML).SPFilterNode("z:row").attr("ows_ID"); if(EventId > 0){ GetEventData(); } } });
Master Jojo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.