Depends on what exactly you are trying to achieve. If you just want parts of your view being rendered at a later point in time with a pre-defined data structure, you could use the "with" control flow binding with an observable object:
http://jsfiddle.net/bombo/ZbxbQ/2/
If you have more dynamic structures and want to render a templates in accordance to those structures, you could use the "template" binding. The following examples receives the used template name by a supplied view model function, and only renders, if the observable used as data parameter has any value:
http://jsfiddle.net/bombo/JxSrQ/34/
Hope one of these can help you.
Regards,
Boris