Login  Register
Customized macros
Search macros
View logs

ajax

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "ajax".
... in utilities.naml
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
<macro name="ajax" dot_parameter="do" parameters="is_cached" requires="servlet">
    <n.use_html_encoder.>
        <n.do/>
        <n.if.is_cached>
            <then.load_call_later_script/>
            <else>
                <script type="text/javascript">
                    <n.compress.run_call_later_now/>
                </script>
            </else>
        </n.if.is_cached>
    </n.use_html_encoder.>
</macro>