Difference between revisions of "Showsave"

From SmartWiki
Jump to: navigation, search
Line 1: Line 1:
 
{{UnderConstruction}}
 
{{UnderConstruction}}
The '''showsave()''' is a javascript function, which allows you to show the "Save in Progress" animation after the record is saved, in case it would not be shown otherwise.
+
The '''showsave()''' is a javascript function, which allows you to show the "Save in Progress" animation after the record is saved, in case it would not be shown otherwise.<br />
It can be placed in the savefunc() or the sbfunc() functions.
+
It can be placed in the savefunc() or the sbfunc() functions.<br />
 
<code>
 
<code>
function sbfunc(){
+
function sbfunc(){<br />
<tab>showsave();
+
<tab>showsave();<br />
<tab>return true;
+
<tab>return true;<br />
 
}
 
}
</code>
+
</code><br />
 
The function takes one optional parameter, the message to be shown.
 
The function takes one optional parameter, the message to be shown.

Revision as of 11:24, 4 October 2013

Template:UnderConstruction The showsave() is a javascript function, which allows you to show the "Save in Progress" animation after the record is saved, in case it would not be shown otherwise.
It can be placed in the savefunc() or the sbfunc() functions.
function sbfunc(){
<tab>showsave();
<tab>return true;
}

The function takes one optional parameter, the message to be shown.