0

I want to auto-refresh my web page within every 30 seconds and there is one condition if that condition is true I don't want to refresh it. How I should configure it?

1 Answers1

1

I resolved like this

<t:if test="someCondition"> 
    <span t:type="Zone" t:id="someStatusTaskZone" t:update="show" t:mixins="poll" t:interval="300">                          
        <script> 
            (function() {
                 location.reload(); 
            })(); 
       </script>        
   </span>        
</t:if>