Difference between revisions of "Showsave"

From SmartWiki
Jump to: navigation, search
Line 15: Line 15:
 
}
 
}
 
</pre>
 
</pre>
 +
==See Also==
 +
[[Hidesave]]

Revision as of 11:41, 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;
}

See Also

Hidesave