Why does the CF6 Dynamic-Dropdown example called by a CC6 connection event not work?

How to fix a ChronoForms dynamic dropdown not working when called from ChronoConnectivity.

Overview

The issue occurs because the dynamic dropdown's reload URL incorrectly points to the ChronoConnectivity component instead of the ChronoForms component.
Edit the form's dynamic dropdown field. In the advanced settings, use the extra attributes option to manually set the correct data-reloadurl to point to the ChronoForms component.

Answered
Connectivity v6
pd pdforest 16 Oct, 2019
Hi, in the index event I call {chronoform: dynamic-dropdown} but the form loses all its functionality, why? Can connectivity and forms work together?

Why does the CF6 Dynamic-Dropdown example called by a CC6 connection event not work? image 1
Thanks,
Pablo
he healyhatman 17 Oct, 2019
Well right click, inspect, have a look at the URL the dynamic dropdown field is accessing. Probably pointing to the CC component. Might have to edit the form so instead of pointing to the event name it points to the URL directly, like site.com/index.php?component=com_chronoforms6&chronoform=form_name&event=event_name&tvout=view
pd pdforest 17 Oct, 2019
Yes of course you are right when it is called from CC it points to index.php?option=com_chronoconnectivity6...

<select data-reloadurl="index.php?option=com_chronoconnectivity6&amp;cont=manager&amp;conn=dynamic-dropdown&amp;event=dynamic&amp;tvout=view" name="more_details" id="more_details" data-mincharacters="0" type="select"><option value=""></option></select>

When it is called from CF it points to index.php?option=com_chronoforms6...

<select data-reloadurl="index.php?option=com_chronoforms6&amp;cont=manager&amp;chronoform=dynamic-dropdown&amp;event=dynamic&amp;tvout=view" name="more_details" id="more_details" data-mincharacters="0" type="select"><option value="nice">Nice</option>
<option value="verygood">Very Good</option>
<option value="super">Super</option></select>


But I don't know where to fix it in the form ?

Thanks in advance,
Pablo
he healyhatman 17 Oct, 2019
Answer
Instead of filling in the "reload event" option, you can go to advanced->extra attributes and type

data-reloadurl:index.php?option=com_chronoformsblahblahblah&tvout=view

data-reloadurl: sorry NOT data-reloadurl=
pd pdforest 21 Oct, 2019
With the extra attributes it worked correctly

Thank you healyhatman!
This topic is locked and no more replies can be posted.