Thanks !
I have manage a php code in a template variation : il works.
// getValue display "233,154,854"
$suggestion_chants = $cck->getValue('suggestion_chants');
// renderField display "Titre 233, Titre 154, Titre 854" in one value
$suggestion_chants_render = $cck->renderField('suggestion_chants');
// explode the ids and Titres
$id = explode(",", $suggestion_chants);
$titre = explode(",", $suggestion_chants_render);
for ($i=0; $i<10; $i++) {
if ($id[$i] != '') {
echo "<li><a href='".$id[$i]."'"; // ... and display the link without alias - never mind
echo " target='blank'>".$titre[$i]."</a></li>"; // ... and display the title
} else {
break;
}
}
But I discover this plugin just after :
http://www.pulsar-informatique.com/telechargements-gratuits/plugin-de-typo-pour-listes-seblod
I think it should do what I was searching.