Click here to Skip to main content
15,886,362 members
Home / Discussions / JavaScript
   

JavaScript

 
Question[RESOLVED] Preserve the form status Pin
CodingLover1-May-11 20:28
CodingLover1-May-11 20:28 
AnswerRe: Preserve the form status Pin
Sunasara Imdadhusen5-May-11 3:55
professionalSunasara Imdadhusen5-May-11 3:55 
GeneralRe: Preserve the form status Pin
CodingLover5-May-11 17:58
CodingLover5-May-11 17:58 
QuestionHow can i refresh status bar information... Pin
Olli Ikonen29-Apr-11 23:42
Olli Ikonen29-Apr-11 23:42 
AnswerRe: How can i refresh status bar information... Pin
DaveAuld29-Apr-11 23:59
professionalDaveAuld29-Apr-11 23:59 
GeneralRe: How can i refresh status bar information... Pin
Olli Ikonen30-Apr-11 0:31
Olli Ikonen30-Apr-11 0:31 
GeneralRe: How can i refresh status bar information... Pin
DaveAuld30-Apr-11 0:33
professionalDaveAuld30-Apr-11 0:33 
GeneralRe: How can i refresh status bar information... Pin
Olli Ikonen30-Apr-11 1:37
Olli Ikonen30-Apr-11 1:37 
Id doesn't update the status bar in the loop...

/////////////
// globals
/////////////
var autoUpdate		= true;
var autoUpdateString	= "";

///////////////////////
// update status bar
///////////////////////
function updateStatusBar()
{
  window.status = autoUpdateString;
  autoUpdateString += ".";
}

////////////////
// show items
////////////////
function fillItemContent(category)
{
  .
  .
  .
  // start constructing..
  // insert items	
  for(i = 0; i < items.length; i++ )
  {			
    if(items[i]._category == category)
    {
      if(autoUpdate)
      {
	setTimeout(function() { updateStatusBar(); }, 10);
      }	
      ...	
    }
  }
}

GeneralRe: How can i refresh status bar information... Pin
Luc Pattyn30-Apr-11 2:26
sitebuilderLuc Pattyn30-Apr-11 2:26 
GeneralRe: How can i refresh status bar information... Pin
DaveAuld30-Apr-11 4:05
professionalDaveAuld30-Apr-11 4:05 
GeneralRe: How can i refresh status bar information... Pin
Luc Pattyn30-Apr-11 4:48
sitebuilderLuc Pattyn30-Apr-11 4:48 
GeneralRe: How can i refresh status bar information... Pin
DaveAuld30-Apr-11 4:51
professionalDaveAuld30-Apr-11 4:51 
GeneralRe: How can i refresh status bar information... Pin
DaveAuld30-Apr-11 6:35
professionalDaveAuld30-Apr-11 6:35 
GeneralRe: How can i refresh status bar information... Pin
DaveAuld30-Apr-11 5:32
professionalDaveAuld30-Apr-11 5:32 
QuestionWhat in a world i'm doing wrong... Pin
Olli Ikonen30-Apr-11 6:47
Olli Ikonen30-Apr-11 6:47 
AnswerRe: What in a world i'm doing wrong... Pin
Luc Pattyn30-Apr-11 6:52
sitebuilderLuc Pattyn30-Apr-11 6:52 
NewsSorry Pin
Olli Ikonen30-Apr-11 10:01
Olli Ikonen30-Apr-11 10:01 
GeneralRe: What in a world i'm doing wrong... Pin
DaveAuld30-Apr-11 19:58
professionalDaveAuld30-Apr-11 19:58 
AnswerRe: What in a world i'm doing wrong... Pin
Luc Pattyn30-Apr-11 21:27
sitebuilderLuc Pattyn30-Apr-11 21:27 
AnswerDuplicate - Your question also in Q/A section Pin
thatraja30-Apr-11 7:04
professionalthatraja30-Apr-11 7:04 
GeneralRe: How can i refresh status bar information... Pin
thatraja30-Apr-11 8:22
professionalthatraja30-Apr-11 8:22 
NewsSorry Pin
Olli Ikonen30-Apr-11 10:01
Olli Ikonen30-Apr-11 10:01 
Question[RESOLVED] innerHTML messed up Pin
CodingLover27-Apr-11 18:58
CodingLover27-Apr-11 18:58 
AnswerRe: innerHTML messed up Pin
AspDotNetDev27-Apr-11 19:43
protectorAspDotNetDev27-Apr-11 19:43 
GeneralRe: innerHTML messed up Pin
CodingLover27-Apr-11 21:09
CodingLover27-Apr-11 21:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.