NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: Alberto on August 02, 2010, 08:52:08 AM
-
PR27 browse timer does not refresh.
You can see the request in the server log but the client page are not refreshed.
Taking a look at the sorce code, theres something different, before PR27 the line with the refresh code was larger.
PR25 works ok.
Alberto
-
Going back to previous vertions, the timer adds the following line
<script type="text/javascript">SetTimer('banalisisopciones_uanalisisopciones',9000,'refresh=current','_parentProc=uAnalisisOpciones');
</script>
Now the timer only adds
<script type="text/javascript">SetTimer('banalisisopciones_uanalisisopciones',9000,'','');
</script>
-
Bruce, is this solved in PR28?
Thanks
-
No Alberto - PR28 was up already before I saw your posting.
-
Could you reproduce it? any idea of when will it fixed?
Any way for me to fix it now?
Thanks
Alberto
-
Alberto,
I've tried duplicating in the Timers (46) example, but it seems to be working ok there.
I'm not sure if it has to do with some parent-child combination though, or something like that.
Can you see if you can duplicate in that example, and tweak it so it's doing the same as your app? Then send me the app & dict? I want to get PR29 out as soon as I can.
Thanks
Bruce
-
Bruce, I will try to reproduce it but the thing is simple:
Its a browse inside a memory form.
In older vertions the template genarates the line:
<script type="text/javascript">SetTimer('banalisisopciones_uanalisisopciones',9000,
'refresh=current','_parentProc=uAnalisisOpciones');
</script>
Now the timer only adds
<script type="text/javascript">SetTimer('banalisisopciones_uanalisisopciones',9000,'','');
</script>
Then the server receives the GET but the browse is not refreshed in the cliente side,
Does this help you?
Alberto
-
Bruce, I think its solved.
Problem was that between the PR changes the refresh type gets blanked.
I changed it to current and now it works.
Thanks
Alberto