Forum Discussion

Dinesh-Singh's avatar
Dinesh-Singh
Copper Contributor
May 31, 2024

Need Help with Date Formatting for SharePoint Event List

    

Hello everyone,

 

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:

 

  1. Saving the date in UTC format and converting it to local time when displaying.
  2. 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();
                }
            }  
        });
No RepliesBe the first to reply

Resources