when I want to have a "path" like this:account/annunci/4/edit
I can't get the "js" in the "config/global/pages.php" file to work
my config:
"account" => array(
"annunci" => array(
"title" => "Lista annunci",
"assets" => array(
"custom" => array(
"css" => array(
"plugins/custom/datatables/datatables.bundle.css",
),
"js" => array(
"plugins/custom/datatables/datatables.bundle.js",
),
),
),
"create" => array(
"title" => "Aggiungi Annuncio",
"assets" => array(
"custom" => array(
"css" => array(
"plugins/custom/datatables/datatables.bundle.css",
),
"js" => array(
"plugins/custom/datatables/datatables.bundle.js",
"js/custom/account/annunci/create-annuncis.js",
),
),
),
),
"*" => array(
"edit" => array(
"title" => "Modifica Annuncio",
"assets" => array(
"custom" => array(
"js" => array(
"js/custom/account/annunci/edit-annuncis.js",
),
),
),
),
),
),