Objectdojox.dtl.render.html.sensitivity

dojo.require("dojox.dtl.render.html");
defined in dojox/dtl/render/html.js

Necessary if you make a lot of changes to your template. What happens is that the entire node, from the attached DOM Node down gets swapped with a clone, and until the entire rendering is complete, we don't replace the clone again. In this way, renders are "batched".

But, if we're only changing a small number of nodes, we might no want to buffer at all. The higher numbers mean that even small changes will result in buffering. Each higher level includes the lower levels.

PropertiesBack to top