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.<br />
+
The '''showsave()''' is a [[Category:JavaScript|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, used in [[Custom Field Type: Special – Browser Script|Special - Browser Script]] type custum field.<br />
 
It can be placed in the savefunc() or the sbfunc() functions, used in [[Custom Field Type: Special – Browser Script|Special - Browser Script]] type custum field.<br />
 +
<pre>
 +
function savefunc(){
 +
showsave();
 +
return true;
 +
}
 +
</pre>
 +
The function takes one ''optional parameter'', the '''message''' to be shown.<br />
 
<pre>
 
<pre>
 
function sbfunc(){
 
function sbfunc(){
showsave();
+
    showsave("Saving Census Check List");
 
return true;
 
return true;
 
}
 
}
</pre><br />
+
</pre>
The function takes one optional parameter, the message to be shown.
 

Revision as of 11:35, 4 October 2013

Template:UnderConstruction The showsave() is a 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, used in Special - Browser Script type custum field.

function savefunc(){
showsave();
return true;
}

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

function sbfunc(){
    showsave("Saving Census Check List");
return true;
}