Jump to content

[SOLVED] IE not doing all updates whereas Firefox does


stockton

Recommended Posts

I have a problem where most fields but not all display current data after Ajax update.

Part of the web page looks like:-

<tr><TD align=left>Total tickets :</td>
<td align=center colspan="2" id="OutstandingValue"><?php echo $TotalTickets ?></td></tr>
<tr><TD align=left>Remaining tickets:</td>
<td align=center colspan="2" id="TablesValue"><?php echo $RemainingTickets ?></td></tr>
<tr><TD align=left>Bundles Issued :</td><td align=center>Issued</td><td align=center>Suggestion</td></tr>

<tr><TD align=left>Five Hundreds: :</td>
<td align=center width=25% id="DIssued"><?php echo $DIssued ?></td>
<td align=center width=25% id="DSuggestion"><?php echo $DSuggestion ?></td></tr>

<tr><TD align=left>Hundreds :</td>
<td align=center width=25% id="CIssued"><?php echo $CIssued ?></td>
<td align=center width=25% id="CSuggestion"><?php echo $CSuggestion ?></td></tr>
<tr><td>Fifties:</td>
<td align=center width=25% id="LIssued"><?php echo $LIssued ?></td>
<td align=center width=25% id="LSuggestion"><?php echo $LSuggestion ?></td></tr>
<tr><TD align=left>Tens :</td>
<td align=center width=25% id="XIssued"><?php echo $XIssued ?></td>
<td align=center width=25% id="XSuggestion"><?php echo $XSuggestion ?></td></tr>
<tr><td>Singles:</td>
<td align=center width=25% id="IIssued"><?php echo $IIssued ?></td>
<td align=center width=25% id="ISuggestion"><?php echo $ISuggestion ?></td></tr>

<tr><TD align=left>Total Issued:</td>
<td align=center colspan="2" id="Total"><?php echo $TotalIssued ?></td></tr>

all fields except TablesValue and Total get updated correctly by my Ajax program but until I click the IE reload button these two fields do not show up correctly.

The pertinant piece of the Ajax script look like:-

                var TablesValue = document.getElementById("TablesValue")
                TablesValue.value = RemainingTickets;

 

Link to comment
Share on other sites

  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.