page.onLoad
It is fired immediately after the page has become completely loaded. Good for updating the visible layout according to the values of fields.
Parameters
none
Returns
none
Example
If we know the exactly date of birth, we don’t want to ask the age-group.
$('page').onLoad = function() {
vcc.getController('page', 'age_group').hidden = vcc.isSelected('date_of_birth');
};
Comments
Can’t find what you need? Use the comment section below to connect with others, get answers from our experts, or share your ideas with us.
There are no comments yet.