Thanks KK.
I did this :
Which works if I replace "_contact_dropdown" in "page_title" for the actual contact name.
Then, I updated the DB_PERSIST part to :
Still not working. If the code inside the "my_contact" capture sends the right data (the correct IDs), why can't the system find the right contact?
I tried entering "2506" instead of "my_contact" for the "contact_dropdown" line in the DB_PERSIST part, and it worked. The relation field was populated with the right contact within that contract.
I tried
and
Not working. Thanks a lot KK, I think we are getting close to fixing this issue for me.
I did this :
- Code: Select all
<cms:capture into='my_contact'> <cms:pages masterpage='contacts.php' page_title=_contact_dropdown limit='1'><cms:show k_page_id/></cms:pages> </cms:capture>
Which works if I replace "_contact_dropdown" in "page_title" for the actual contact name.
Then, I updated the DB_PERSIST part to :
- Code: Select all
<cms:db_persist _auto_title = '1' _invalidate_cache = '0' _masterpage = 'contrats.php' _mode = 'create' contrat_status = _contrat_status block_evenement = my_repeatable my_uid = _my_uid k_publish_date = _k_page_date contact_dropdown= my_contact >
Still not working. If the code inside the "my_contact" capture sends the right data (the correct IDs), why can't the system find the right contact?
I tried entering "2506" instead of "my_contact" for the "contact_dropdown" line in the DB_PERSIST part, and it worked. The relation field was populated with the right contact within that contract.
I tried
- Code: Select all
contact_dropdown= "<cms:show my_contact/>"
and
- Code: Select all
contact_dropdown= "my_contact"
Not working. Thanks a lot KK, I think we are getting close to fixing this issue for me.