Hi there
I have a form that was working good, retrieving data from the Joomla DB
http://brancomiele.com.br/jm/contato.html
But the field PROFISSIONAL (which is a dropdown called 'dropcontatos'), keeps filling the field with OLD DELETED DATA (for example, the 'Leo Evandro' user is deleted from Users and also Contacts.)
I use a DBRead action after the onLoad and before the render form
Then there is a custom code field on the OnSubmit (code) area
Is there any Chronoforms Cache saved anywhere??
Where is the data being retrieved?
Thanks for helping!!
Cheers
Lucas
I have a form that was working good, retrieving data from the Joomla DB
http://brancomiele.com.br/jm/contato.html
But the field PROFISSIONAL (which is a dropdown called 'dropcontatos'), keeps filling the field with OLD DELETED DATA (for example, the 'Leo Evandro' user is deleted from Users and also Contacts.)
I use a DBRead action after the onLoad and before the render form
Then there is a custom code field on the OnSubmit (code) area
<?php
$juser = JFactory::getUser($form->data['dropcontatos']);
$form->data['user_email'] = $juser->email;
$form->data['name'] = $juser->name;
?>
Is there any Chronoforms Cache saved anywhere??
Where is the data being retrieved?
Thanks for helping!!
Cheers
Lucas