Hi,id of the dynamic fields is generated automatically. I have the need to valued email and address with a default value. How do I know which field is designing the form? (function render () in class.forms.php ?).ThankMassimo

4 years later

Hello Friend! I faced the same problem, but I solved it
creating a variable of type Object:
$ clientField = UserForm :: getUserForm () -> getFields ();
Then I retrieve the data variable like this:
<? php echo $ clientField [1] -> getWidget () -> id; ?>
<? php echo $ clientField [1] -> getWidget () -> name; ?>
Did it help?

Write a Reply...