Page 1 of 1
Refresh causes entered data to disappear
Posted: 28 Sep 2015
by Sonoma
On random intervals when our users press submit/save the page refreshes and the newly entered data disappears. It could happen after a few seconds or starting or a few minutes. Small forms no biggie, anoying though. But as you can imagine a form with 90+ fields, for some reason people lose it.
It happens in Edge, IE, FF, Chrome...
This is kind of new so I do not think it is SPForm. Anyone run into something like this? Weird issue.
Re: Refresh causes entered data to disappear
Posted: 28 Sep 2015
by rostislav
Can you send the html of a page that's giving you trouble to
support@spform.com ?
Re: Refresh causes entered data to disappear
Posted: 28 Sep 2015
by Sonoma
Sent. It is a stripped down test version of a big form.
Re: Refresh causes entered data to disappear
Posted: 28 Sep 2015
by rostislav
We've found a place in your code that redefines PreSaveItem function, which very well may be what's causing the problem. Try commenting it out and seeing what happens. That is the exact place in the code:
Code: Select all
$kw('document').ready(function() {
RepeatingRows_FixInputSizes();
try
{
if(typeof(PreSaveItem) != 'undefined')
{
if(RR_oldPreSaveItem == null)
{
RR_oldPreSaveItem = PreSaveItem;
PreSaveItem = function()
{
RR_fireOnRequestEnded = function()
{
PreSaveItem = RR_oldPreSaveItem;
var allSaveButtons = $kw('input[id$=diidIOSaveItem]');
if(ClkElmt != 'undefined')
ClkElmt(allSaveButtons[allSaveButtons.length-1]);
else
{
try
{
e.click();
}
catch(e)
{
var evt=document.createEvent('MouseEvents');
evt.initMouseEvent('click', true, true, window,
0, 0, 0, 0, 0, false, false, false, false, 0, null);
e.dispatchEvent(evt);
}
}
window.setTimeout("$kw('input[id$=diidIOSaveItem]').removeAttr('disabled');", 1000);
};
__doPostBack('ctl00$ctl42$g_6b8909e3_5b59_45be_b730_9f71af7234be$SystemicTherapyField$ctl00$ctl00$removeAllEmptyRows','');
return false;
}
}
}
}catch(e){}
});