Page 1 of 1

Issue with Edit form data saving using firefox browser

Posted: 24 Dec 2018
by vishwasbhat1
Hi,

Am not able to save the data to the SharePoint list columns from edit forms using Firefox browser, any idea?? New form it works fine in firefox,from crome browser it works fine for both New and EditForms all the data is getting saved.

Example: Saving comments from the edit form to Comments list where TestList is the master list from where the form data is getting saved except comments


var Account = window.$().SPServices.SPGetCurrentUser({
fieldNames: ["Title", "Name"]
});

fd.onsubmit(function(){
var url = _spPageContextInfo.webAbsoluteUrl;
var comment=fd.field('Comment').value();
InsertDataToList(url,"Comments",[["ParentProcessName","TestList"],["ParentProcessID",fd.field("ItemId").value()],["CommentedBy",Account.Title],["ReviewStatus","Submitted"],["CommentDate",new Date()],["Comment",comment]]);
});

Regards,
Vishwas

Re: Issue with Edit form data saving using firefox browser

Posted: 27 Dec 2018
by AlexZver
Dear Vishwas,

I'm sorry for a late reply.

Could you please provide a code for "InsertDataToList" function?

Does this issue exist for the brand new list?