Hi
I have a problem im using safecracker with 2 playa field.
Here my setup:
I have a channel “dossier” with some custom field. In these custom field 2 are playa field the first is named “client_dossier” and the other is named “victime_dossier” these 2 field are related with 2 different channel with different custom field each.
Now I try to display the custom field of “client” and “victime” in safecracker. It work when I only have 1 playa field in my custom field for the “dossier” channel. But if I add the second playa field I only see the last one in this case “victime”.
I try the same setup with exp:channel:entries and everything rendered well.
Here a sample of the code:
{exp:safecracker channel="dossiers" return="gestion_dossiers/formulaires/ENTRY_ID" entry_id="{segment_3}" include_jquery="no"}
...
{client_dossier}
<tr>
<td class="rAlign">Prénom et Nom :</td>
<td>{nom_client}</td>
</tr>
{/client_dossier}
...
{victime_dossier}
<tr>
<td class="rAlign">Prénom et Nom :</td>
<td>{nom_victime}</td>
</tr>
{/victime_dossier}
...
{/exp:safecracker}What I am missing in this?