Changes between Initial Version and Version 1 of StatusBar


Ignore:
Timestamp:
02/28/10 13:42:57 (15 years ago)
Author:
Serge Sunneach
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • StatusBar

    v1 v1  
     1DeveloperGuidelines
     2DeveloperGuidelinesTips
     3
     4
     5== !StatusBar ==
     6
     7See the  [http://www.vimeo.com/9526668 ajaxS3 demo] to get an idea.
     8It is located in the [http://bazaar.launchpad.net/~flavour/sahana/sahanapy-trunk/annotate/head%3A/static/scripts/S3/S3.js S3.js]
     9
     10To use it call:
     11{{{
     12showStatus(message, timeout, additive, isError)
     13}}}
     14Where
     15    1. message  - string - message to display
     16    1. timeout  - integer - milliseconds to change the statusbar style - flash effect (1000 works OK)
     17    1. additive - boolean - default 'false' - to accumulate messages stacked in the bar which will have growing number of lines if 'true'
     18    1. isError  - boolean - default 'false' - show in the statusbarerror class if set 'true'
     19
     20To remove the status bar, call the
     21{{{
     22hideStatus()
     23}}}