Hello,
I begin with this excellent JCB (thanks for this component) but i have a problem with link in frontend.
I use this code in site view :
<?php foreach ($this->items as $item): ?>
<a href="<?php echo JRoute::_(Webcasts_managerHelperRoute::getWebcastRoute($item->slug)); ?>" ><?php echo $item->name; ?></a><br>
<?php endforeach; ?>
The link is creatded but on the item page any data are return.
However if i replace slug by id, now it is OK, i have the item data display.
Thanks.