In that list, I'm defining an onclick that isn't working.
_necklaces.htm partial:
<? $onClick = "new PopupForm('onCustomEvent', {ajaxFields: {custom_event_handler: 'aapnecklaces:onLoadNecklaces'}}); return false;";?>
<td onclick="<?= $onClick ?>"><?= $necklace->name ?></td>
aapnecklaces_module.php:
public function subscribeEvents()
{
Backend::$events->addEvent('aapnecklaces:onLoadNecklaces', $this, 'load_necklace');
}
public function load_necklace($controller,$customer)
{
$controller->renderPartial(PATH_APP.'/modules/aapnecklaces/partials/_necklace_preview.htm');
}
I get the popup but the _necklace_preview partial isn't loading.
Any ideas?

Help












