Deferred container has a option to lazy load automatically after a certain defined delay or it can be set to not lazy load automatically. In the latter case e.g. on selection of a tab or a check box you can lazy load the container as follows
var defsec = page.ui.get("/Template/SomeDefferedSection");
if (!defsec.isLoaded()){
defsec.lazyLoad();
}