The form name is not accessible in $ form->data if access to the form is from the menu item.
It is possible to retrieve the name of the form in another way?
Regards Vales
It is possible to retrieve the name of the form in another way?
Regards Vales
Hello vales,
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
How to post information from a Chronoform to ZoHo
What are the 'Easy Form' and 'Form' Wizards?
How can I add a mask to format a form input?
P.S: I'm just an automated service๐
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
How to post information from a Chronoform to ZoHo
What are the 'Easy Form' and 'Form' Wizards?
How can I add a mask to format a form input?
P.S: I'm just an automated service๐
i have find this
$app=& JFactory::getApplication();
$params = $app->getPageParameters('com_chronoforms5');
$formname = $params->get('chronoform', '');
Hi Vales,
You can access the form name in any case with:
Regards,
Max
You can access the form name in any case with:
$form->name
Regards,
Max
Problem.
$form->name does not work in custom code in On load.
I did print_r($ form) and there is no "name".
I have find "title"
...
[form] => Array
(
[Form] => Array
(
[id] => 8
[title] => allegato
[params] => Array
(
...
$form->name does not work in custom code in On load.
I did print_r($ form) and there is no "name".
I have find "title"
...
[form] => Array
(
[Form] => Array
(
[id] => 8
[title] => allegato
[params] => Array
(
...
hi Max and Bob,
I retrive the value form name with
I retrive the value form name with
$form->form['Form']['title']
Good, sorry, my mistake!๐
This topic is locked and no more replies can be posted.