Issue with Edit form data saving using firefox browser
Posted: 24 Dec 2018
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
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