Difference between revisions of "Showsave"
From SmartWiki
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() or the 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 /> |
<pre> | <pre> | ||
function savefunc(){ | function savefunc(){ | ||
Line 11: | Line 11: | ||
<pre> | <pre> | ||
function sbfunc(){ | function sbfunc(){ | ||
− | showsave("Saving | + | showsave("Saving Check List"); |
return true; | return true; | ||
} | } |
Revision as of 10:54, 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 Check List"); return true; }