Showsave

From SmartWiki
Revision as of 11:41, 4 October 2013 by Sandor (talk | contribs)

Jump to: navigation, search

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;
}

See Also

Hidesave