Showsave

From SmartWiki
Jump to: navigation, search

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