Difference between revisions of "Showsave"

From SmartWiki
Jump to: navigation, search
Line 1: Line 1:
 
{{UnderConstruction}}
 
{{UnderConstruction}}
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 />
+
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|savefunc()]] or the [[sbfunc|sbfunc()]] functions, used in [[Custom Field Type: Special – Browser Script|Special - Browser Script]] type custum field.<br />
 
It can be placed in the [[Savefunc|savefunc()]] or the [[sbfunc|sbfunc()]] functions, used in [[Custom Field Type: Special – Browser Script|Special - Browser Script]] type custum field.<br />
 
==Syntax==
 
==Syntax==
 
<font size="3">showsave([msg]);</font><br />
 
<font size="3">showsave([msg]);</font><br />
 +
 
'''Where''':
 
'''Where''':
 
* ''msg'' is the message [optional].<br /><br />
 
* ''msg'' is the message [optional].<br /><br />

Revision as of 12:12, 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.

Syntax

showsave([msg]);

Where:

  • msg is the message [optional].

Examples: The function called without parameter in the savefunc:

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

The function called with the optional parameter, the message to be shown:

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

See Also

Hidesave