You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 28, 2018. It is now read-only.
Im using your example for branching when i click on male or female i get this error
This webpage has a redirect loop
The webpage at http://localhost/fit/clients/wizard/Array has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer.
Im using your example for branching when i click on male or female i get this error
This webpage has a redirect loop
The webpage at http://localhost/fit/clients/wizard/Array has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer.
the url looks like this
clients/wizard/Array
am i missing something here ?
//controller
$this->Wizard->steps = array('step1', 'step2', 'gender', array('male' => array('step3')), 'step4', array('female' => array('step5')));
function _processGender() {
$this->Owner->set($this->data);
if($this->Client->validates()) {
}
return false;
}
//view
$options=array('male'=>'male','female'=>'female');
echo $this->Form->radio('Owner.gender',$options,$attributes);?>
The text was updated successfully, but these errors were encountered: