]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/argeo-ria-src/class/org/argeo/ria/components/ILoadStatusable.js
Cosmetics (set label Rich)
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / argeo-ria-src / class / org / argeo / ria / components / ILoadStatusable.js
1 /**
2 *
3 * Any component implementing this interface will generally be a user-interface indicating
4 * a "loading" status (button enabled/disabled, animated loading gif, etc...).
5 * The RequestManager can handle such an array of ILoadStatusable at the beginning/end of a Request.
6 *
7 * @author Charles du Jeu
8 */
9 qx.Interface.define("org.argeo.ria.components.ILoadStatusable", {
10
11 members : {
12 /**
13 * Sets the current status of the component.
14 * @param status {boolean} load status
15 * @return {Boolean}
16 */
17 setOnLoad : function(status){return true;}
18 }
19 });