render

renders the specified item or the whole layout

void render(id id,object obj,string mode);
ididthe item id
objobjectthe object with data for the rendered item
modestring"update" to change only a part of a layout

Example

$$("datalayout").render(id,obj,mode);

Details

When no parameters are specified, the method renders the whole view.

Back to top