Revize 73f8a3a0
Přidáno uživatelem Ondřej Anděl před více než 3 roky(ů)
application/view/searchContent.php | ||
---|---|---|
176 | 176 |
false |
177 | 177 |
]); |
178 | 178 |
movedNode = document.getElementById("filter-case"); |
179 |
beforeNode = document.getElementById("filter-vid");
|
|
180 |
movedNode.parentNode.insertBefore(movedNode, null);
|
|
179 |
beforeNode = document.getElementById("filter-but");
|
|
180 |
movedNode.parentNode.insertBefore(movedNode, beforeNode);
|
|
181 | 181 |
break; |
182 | 182 |
case "D": |
183 | 183 |
setFilerVisibility([ |
... | ... | |
441 | 441 |
</div> |
442 | 442 |
|
443 | 443 |
<!-- send button--> |
444 |
<button class="ml-auto btn" onclick="callFilter()"> |
|
444 |
<button class="ml-auto btn" id="filter-but" onclick="callFilter()">
|
|
445 | 445 |
Filtrovat |
446 | 446 |
</button> |
447 | 447 |
</div> |
... | ... | |
589 | 589 |
result += "<td>" + renderManuscript(item.manuscript) + "</td>"; |
590 | 590 |
result += "<td>" + item.position1 + (item.position2 ? ("/" + item.position2 + (item.positiondetail ? "/" + item.positiondetail : "")) : "") + "</td>"; |
591 | 591 |
result += "<td class=\"action-td\">" + |
592 |
"<button class=\"btn mr-1\" title=\"Upravit\" data-toggle=\"modal\" data-target=\"#edit-modal\" data-pseudo-id='" + id + "' data-title=\"Upravit záznam\"><i class=\"fa fa-pencil\"></i></button>" + //TODO ADMIN ONLY |
|
592 | 593 |
"<button class=\"btn\" title=\"Detail\" data-toggle=\"modal\" data-target=\"#detail-modal\" data-pseudo-id='" + id + "'><i class=\"fa fa-search\"></i></button>" + |
593 | 594 |
"</td>"; |
594 | 595 |
result += "</tr>"; |
Také k dispozici: Unified diff
Feature #8350: Vytvoření modalů detailu a editu - editform