mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-12 00:45:34 +00:00
add extra content in document list row after last column
This commit is contained in:
parent
cf82094149
commit
c77938cd11
|
@ -3172,6 +3172,11 @@ $('body').on('click', '[id^=\"table-row-folder\"] td:nth-child(2)', function(ev)
|
|||
$content .= "<td>";
|
||||
$content .= $this->documentListRowAction($document, $previewer, $skipcont, $version, $extracontent);
|
||||
$content .= "</td>";
|
||||
if(!empty($extracontent['columns_last'])) {
|
||||
foreach($extracontent['columns_last'] as $col)
|
||||
$content .= '<td>'.$col.'</td>';
|
||||
}
|
||||
|
||||
if(!$skipcont)
|
||||
$content .= $this->documentListRowEnd($document);
|
||||
}
|
||||
|
|
|
@ -3250,6 +3250,11 @@ $('body').on('click', '[id^=\"table-row-folder\"] td:nth-child(2)', function(ev)
|
|||
$content .= "<td>";
|
||||
$content .= $this->documentListRowAction($document, $previewer, $skipcont, $version, $extracontent);
|
||||
$content .= "</td>";
|
||||
if(!empty($extracontent['columns_last'])) {
|
||||
foreach($extracontent['columns_last'] as $col)
|
||||
$content .= '<td>'.$col.'</td>';
|
||||
}
|
||||
|
||||
if(!$skipcont)
|
||||
$content .= $this->documentListRowEnd($document);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user