473,473 Members | 2,163 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Need help with screen update during event processing

Bob
Below is sample code that illustrates what I'm trying to do. For sake
of brevity I didn't include the properties of buildBtn that determine
what data to request.

The problem is I never see "Processing request" and depending on
server utilization the response can take several seconds to load
leading the users to wonder if the system is working. Unfortunately
getting rid of the users is not an option :) so any help I can get on
making this work is greatly appreciated.

TIA,
Bob

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script type="text/javascript">

// dynamically build button
function buildBtn(val){

function evt(){
results.innerHTML = '<h2>Processing request</h2>';

// Use for loop to simulate time it takes to
// get results page from server
for (var i=0; i<1500000; i++)
null;

// display results
results.innerHTML = "<h2>" + btn.value + " results</h2>";
}

var btn = document.createElement('input');
btn.type = "button";
btn.value = val;
btn.onclick = evt;
document.body.appendChild(btn);
}
</script>
</HEAD>

<BODY>
<script type="text/javascript">
var b1 = new buildBtn('button 1');
var b2 = new buildBtn('button 2');
</script>

<div id="results" />
</BODY>
</HTML>
Jul 20 '05 #1
4 5033
"Bob" <r.**********@attbi.com> wrote in message
news:5f*************************@posting.google.co m...
Below is sample code that illustrates what I'm trying to do. For sake
of brevity I didn't include the properties of buildBtn that determine
what data to request.

The problem is I never see "Processing request" and depending on
server utilization the response can take several seconds to load
leading the users to wonder if the system is working. Unfortunately
getting rid of the users is not an option :) so any help I can get on
making this work is greatly appreciated.

TIA,
Bob

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script type="text/javascript">

// dynamically build button
function buildBtn(val){

function evt(){
results.innerHTML = '<h2>Processing request</h2>';

// Use for loop to simulate time it takes to
// get results page from server
for (var i=0; i<1500000; i++)
null;

// display results
results.innerHTML = "<h2>" + btn.value + " results</h2>";
}

var btn = document.createElement('input');
btn.type = "button";
btn.value = val;
btn.onclick = evt;
document.body.appendChild(btn);
}
</script>
</HEAD>

<BODY>
<script type="text/javascript">
var b1 = new buildBtn('button 1');
var b2 = new buildBtn('button 2');
</script>

<div id="results" />
</BODY>
</HTML>

I don't know why it doesn't work but you could use:
window.status = "Processing request"
instead then set it to blank afterwards.
It also didn't work when I tried toggling the visibility of an animated gif
such as:
http://www.itn.net/gif/style/ua/loading.gif
using this HTML:

<span id="loading" style="visibility:hidden">
<img src="http://www.itn.net/gif/style/ua/loading.gif" border="0"
alt="Processing request">
</span>

and this javascript:
loading.style.visibility = "visible";
and
loading.style.visibility = "hidden";
a the beggining and end of the "evt()" function.
Jul 20 '05 #2
DU
Bob wrote:
Below is sample code that illustrates what I'm trying to do. For sake
of brevity I didn't include the properties of buildBtn that determine
what data to request.

The problem is I never see "Processing request" and depending on
server utilization the response can take several seconds to load
leading the users to wonder if the system is working. Unfortunately
getting rid of the users is not an option :) so any help I can get on
making this work is greatly appreciated.

TIA,
Bob

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script type="text/javascript">

// dynamically build button
function buildBtn(val){

function evt(){
results.innerHTML = '<h2>Processing request</h2>';

Written like that, only MSIE will be able to support this.
document.getElementById("results").innerHTML = "<h2>Processing
request</h2>";
will work on most W3C DOM 2 compliant browsers.

The 2nd problem is that the buildBtn is called as the document loads and
results is not seen in the program. You can not make a call about an
object which does not already exists. Here, the referenced object
"results" does not exist at the point where the 2 buildBtn functions are
called.
This is a scope problem. Just by using defer or an init function on the
load event of the body, you can avoid all this.

// Use for loop to simulate time it takes to
// get results page from server
for (var i=0; i<1500000; i++)
null;

This looks very very weird to me. You're deliberately occupying the cpu
with a bogus, pointless loop. This abuses user's system resources. Just
imagine what this will cause to users having different system resources.
// display results
results.innerHTML = "<h2>" + btn.value + " results</h2>";
You're overwriting what was previously written. Is that intentional?

I personally would have used entirely compliant DOM methods to write
dynamically these results into the document and, of course, without the
weird and suspicious for loop.
}

var btn = document.createElement('input');
btn.type = "button";
btn.value = val;
btn.onclick = evt;
evt is often used as the event object generated by an event listener in
W3C DOM 2 events; that's why I would use another identifier than evt.

document.body.appendChild(btn);
}
</script>
</HEAD>

<BODY>
<script type="text/javascript">
var b1 = new buildBtn('button 1');
var b2 = new buildBtn('button 2');
</script>

<div id="results" />
I'm pretty sure you can not minimize the div like that. I would be very
surprised if you can do that without problems.
</BODY>
</HTML>


DU
Jul 20 '05 #3
Bob
DU <dr*******@hotREMOVETHISmail.com> wrote in message news:<bt**********@news.eusc.inter.net>...
Bob wrote:
Below is sample code that illustrates what I'm trying to do. For sake
of brevity I didn't include the properties of buildBtn that determine
what data to request.

The problem is I never see "Processing request" and depending on
server utilization the response can take several seconds to load
leading the users to wonder if the system is working. Unfortunately
getting rid of the users is not an option :) so any help I can get on
making this work is greatly appreciated.

TIA,
Bob

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script type="text/javascript">

// dynamically build button
function buildBtn(val){

function evt(){
results.innerHTML = '<h2>Processing request</h2>';

Written like that, only MSIE will be able to support this.
document.getElementById("results").innerHTML = "<h2>Processing
request</h2>";
will work on most W3C DOM 2 compliant browsers.


First off, thanks for taking the time to respond. This is an intranet
only page where the client configuration is restricted only to MSIE.

The 2nd problem is that the buildBtn is called as the document loads and
results is not seen in the program. You can not make a call about an
object which does not already exists. Here, the referenced object
"results" does not exist at the point where the 2 buildBtn functions are
called.
This is a scope problem. Just by using defer or an init function on the
load event of the body, you can avoid all this.

Two instances of buildBtn are instantiated when the form loads however
the contents of "results" are only modified as part of the onclick
event for each button so "results" does exist at the time it's
referenced.

// Use for loop to simulate time it takes to
// get results page from server
for (var i=0; i<1500000; i++)
null;


This looks very very weird to me. You're deliberately occupying the cpu
with a bogus, pointless loop. This abuses user's system resources. Just
imagine what this will cause to users having different system resources.


The loop was only put in as a time delay to demonstrate the issue. The
actual page sends form information to the server and retrieves the
results.
// display results
results.innerHTML = "<h2>" + btn.value + " results</h2>";


You're overwriting what was previously written. Is that intentional?

I personally would have used entirely compliant DOM methods to write
dynamically these results into the document and, of course, without the
weird and suspicious for loop.


Yes, it is intentional, "results" is used to display dynamic data
based on user input
}

var btn = document.createElement('input');
btn.type = "button";
btn.value = val;
btn.onclick = evt;


evt is often used as the event object generated by an event listener in
W3C DOM 2 events; that's why I would use another identifier than evt.


Thanks, I'll change it to something else.
document.body.appendChild(btn);
}
</script>
</HEAD>

<BODY>
<script type="text/javascript">
var b1 = new buildBtn('button 1');
var b2 = new buildBtn('button 2');
</script>

<div id="results" />


I'm pretty sure you can not minimize the div like that. I would be very
surprised if you can do that without problems.


I haven't had any problems so far but I'll keep this in mind should I
encounter any weirdness.
</BODY>
</HTML>


DU

Jul 20 '05 #4
Bob
"McKirahan" <Ne**@McKirahan.com> wrote in message news:<7NXLb.16496$xy6.42580@attbi_s02>...
"Bob" <r.**********@attbi.com> wrote in message
news:5f*************************@posting.google.co m...
Below is sample code that illustrates what I'm trying to do. For sake
of brevity I didn't include the properties of buildBtn that determine
what data to request.

The problem is I never see "Processing request" and depending on
server utilization the response can take several seconds to load
leading the users to wonder if the system is working. Unfortunately
getting rid of the users is not an option :) so any help I can get on
making this work is greatly appreciated.

TIA,
Bob

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script type="text/javascript">

// dynamically build button
function buildBtn(val){

function evt(){
results.innerHTML = '<h2>Processing request</h2>';

// Use for loop to simulate time it takes to
// get results page from server
for (var i=0; i<1500000; i++)
null;

// display results
results.innerHTML = "<h2>" + btn.value + " results</h2>";
}

var btn = document.createElement('input');
btn.type = "button";
btn.value = val;
btn.onclick = evt;
document.body.appendChild(btn);
}
</script>
</HEAD>

<BODY>
<script type="text/javascript">
var b1 = new buildBtn('button 1');
var b2 = new buildBtn('button 2');
</script>

<div id="results" />
</BODY>
</HTML>

I don't know why it doesn't work but you could use:
window.status = "Processing request"
instead then set it to blank afterwards.
It also didn't work when I tried toggling the visibility of an animated gif
such as:
http://www.itn.net/gif/style/ua/loading.gif
using this HTML:

<span id="loading" style="visibility:hidden">
<img src="http://www.itn.net/gif/style/ua/loading.gif" border="0"
alt="Processing request">
</span>

and this javascript:
loading.style.visibility = "visible";
and
loading.style.visibility = "hidden";
a the beggining and end of the "evt()" function.


Your response got me to thinking. I'm trying to update the screen in
the middle of handling an event which probably is the reason why it
doesn't work. What I really need to do is handle the event then
retrieve the info. So I tried splitting "evt" into two function and
using setTimeout to process the loadTbl function. The problem is I'm
not sure how to reference loadTbl.

If I move loadTbl outside of buildBtn it works but then I have other
issues to deal with so I'd rather not do that if I could avoid it. Any
ideas?

function evt(){
results.innerHTML = '<h2>Processing request</h2>';
setTimeout(loadTbl, 1); // This line produces an error
}

function loadTbl(){
// Use for loop to simulate time it takes to
// get results page from server
for (var i=0; i<1500000; i++)
null;

// display results
results.innerHTML = "<h2>" + btn.value + " results</h2>";
}
Jul 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Victor | last post by:
I need a JavaScript timer - I have five events I need to time, that can be triggered by a mouseclick event, or a keypress event. Each event is separated by only one to two seconds. The first...
2
by: Mike Button | last post by:
Hello all, I am really really desperate on what I should do, and I am asking for help from anyone in this newsgroup, here's the situation: I am creating a form that is being run on a server...
11
by: Glen Wolinsky | last post by:
This is my first attempt as asynchronous processing. I have created a small test app as proof of concept, but I am having one proglem. In the example (code listed below), my callback routine has...
5
by: Geoff Pennington | last post by:
My VB.Net app reads an Excel file, processes it one row at a time, and when processing is complete writes the row to a database. The typical file will have several thousand rows and may take a...
3
by: aprivate | last post by:
Hi I am having some problem with a form timer. I added a progress bar to increment its value and the timer works when I use form1.showdialog() However when I use form1.show, form1.refresh()...
11
by: Hoku | last post by:
I am using dual monitors on a dual head ATI AGP4x video card. I installed the Nov 11 2005 release of ATI's catalyst control center with Hydravision to manage the dual monitor setup. I recently...
9
by: Jakob Lithner | last post by:
1) I have a DataGridView with edit capability. But in some columns I want to limit the input with a DropDownList. There is no inbuilt column for DropDownLists so I intended to add one myself. I...
2
by: rdemyan via AccessMonster.com | last post by:
My application has a lot of complicated SQL statements, calculations, processing that takes time. I've created a custom form to act like a messagebox. It has 10 small rectangles on it that change...
46
by: Bruce W. Darby | last post by:
This will be my very first VB.Net application and it's pretty simple. But I've got a snag in my syntax somewhere. Was hoping that someone could point me in the right direction. The history: My...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.