* Code for Dependency Injection Article. * Added Java based configuration. Downloaded formatter.xml and reformatted all changed files. Manually changed tab into 4 spaces in XML configuration files. * BAEL-434 - Spring Roo project files generated by Spring Roo. No formatting applied. Added POM, java and resources folders. * Moved project from roo to spring-roo folder.
34 lines
1.7 KiB
HTML
34 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Modal</title>
|
|
</head>
|
|
<body id="body">
|
|
<!--
|
|
Only the inner content of the following div is included within the
|
|
template, in the section modal
|
|
-->
|
|
<div data-th-fragment="modalConfirmDeleteBatch(tableId, title, message)">
|
|
<div data-th-replace="~{fragments/modal :: modal(id = ${tableId} + 'DeleteBatchConfirm',
|
|
title = ${title}, body = ~{::modalConfirmBody}, footer = ~{::modalConfirmFooter})}">
|
|
<div data-row-id="" data-th-id="${tableId} + DeleteBatchRowId" data-th-fragment="modalConfirmBody">
|
|
<p data-th-text="${message}">Going to remove the selected elements</p>
|
|
</div>
|
|
<div data-th-fragment="modalConfirmFooter">
|
|
<button type="reset" class="btn btn-default pull-left" data-dismiss="modal" aria-label="Close" data-th-text="#{label_reset}">Cancel</button>
|
|
<button type="button" class="btn btn-primary pull-right" data-th-id="${tableId} + DeleteBatchButton" data-dismiss="modal" aria-label="Confirm" data-th-text="#{label_submit}">Accept</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div data-th-replace="~{fragments/modal :: modal(id = ${tableId} + 'DeleteBatchSuccess', title = ${title}, body = ~{::modalSuccessBody}, footer = ~{})}">
|
|
<p data-th-text="|#{info_deleted_items_batch}|" data-th-fragment="modalSuccessBody">Removed selected items</p>
|
|
</div>
|
|
|
|
<div data-th-replace="~{fragments/modal :: modal(id = ${tableId} + 'DeleteBatchError', title = ${title}, body = ~{::modalErrorBody}, footer = ~{})}">
|
|
<p data-th-text="|#{error_deleting_item}|" data-th-fragment="modalErrorBody">Error deleting selected items.</p>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |