
Re: Mark-as-read reloads entire channel summary
support wrote:
Matt wrote:
it could just change the innerHTML property on that heading, and it'd be fine.
I don't quite understand what you mean here.
If you access the object model for the IE browser object, you can 'walk' the page as objects (sorry if i'm oversimplifying).
Maybe a quick example would help (apologies for dodgy code):
Code:
<HTML>
<HEAD>
<script language="vbscript">
sub ChangeFooText
spnFoo.innerHTML = "bob"
end sub
</script>
</HEAD>
<BODY>
<DIV ID="spnFoo">Hello</DIV>
<form>
<INPUT id="Button1" type="button" value="Button" name="Button1" onclick="ChangeFooText">
</form>
</BODY>
</HTML>
So, you can just modify the innerHTML property of the appropriate item heading, which will re-render just that heading.
Let me know if you want to take this offline.
Cheers,
Matt