This is the Form Field ChrnoForms Created
<input name="full_name" id="full_name" value="" placeholder="" maxlength="" size="" class="validate['required'] form-control A" title="" style="" data-inputmask="" data-load-state="" data-tooltip="" type="text">
I am tying to Auto Populate the full_name field with the code below, in the conditions of Data Read in ChronoForms V5
The problem I am having is that the Form Field is not populating
Can any one help?
Thanks
<input name="full_name" id="full_name" value="" placeholder="" maxlength="" size="" class="validate['required'] form-control A" title="" style="" data-inputmask="" data-load-state="" data-tooltip="" type="text">
I am tying to Auto Populate the full_name field with the code below, in the conditions of Data Read in ChronoForms V5
<?php
$user = JFactory::getUser();
return array("name" => $user->name);
$form->data['full_name'] = $user->name;
?>
the On Found has a debugger inserted, and the Data Array returns with the Correct Value
The problem I am having is that the Form Field is not populating
Can any one help?
Thanks