Difference between revisions of "Showsave"

From SmartWiki
Jump to: navigation, search
m (New Save in progress image)
 
Line 1: Line 1:
 
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 custom fields.<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 custom fields.<br />
[[File:Saveinprogress.png|link=|caption|300px]]<br />
+
[[File:Save-in-progress.png|link=|caption|200px]]<br />
 
==Syntax==
 
==Syntax==
 
<font size="3">showsave([''msg'']);</font><br />
 
<font size="3">showsave([''msg'']);</font><br />

Latest revision as of 12:17, 5 March 2015

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, used in Special - Browser Script type custom fields.
caption

Syntax

showsave([msg]);

Where:

  • msg is the message [optional] to be shown.

Examples:
The function called without parameter in the savefunc:

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

The function called with the optional parameter, the message in the sbfunc:

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

See Also

Hidesave