Hello,
I would like to include a proc inside the display_template of an element which requires specific information for each row of the list template. I know hoy to execute the proc and get information of it but I don't know how can I give that specific information.
The code I'm writing is as follows:
cancel {
link_url_col my_url_bad
display_template {
<img src="/resources/prueba/cross.jpeg" width="16" height="16" border="0">
[onedraft::mydraft::get \
-item_id 7472 \
-array my_array]
$my_array(name)
}
sub_class narrow
}
I also have a db_multirow which returns me an item_id for each row.
How can I change 7472 for the value returned by db_multirow for each row?
Thanks.