mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
40 lines
1.4 KiB
Text
40 lines
1.4 KiB
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= t("protocols.print.title") %></title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<%= javascript_include_tag 'jquery_bundle' %>
|
|
<%= javascript_include_tag 'application' %>
|
|
<%= javascript_include_tag "handsontable.full" %>
|
|
<%= render 'shared/formulas_libraries' %>
|
|
<%= stylesheet_link_tag 'layouts/print_protocol', media: 'print, screen' %>
|
|
<body>
|
|
<%= yield %>
|
|
<script>
|
|
$("[data-role='hot-table']").each(function() {
|
|
var $container = $(this).find("[data-role='step-hot-table']");
|
|
var contents = $(this).find('.hot-contents');
|
|
var metadata = $(this).find('.hot-metadata');
|
|
|
|
$container.handsontable({
|
|
startRows: <%= Constants::HANDSONTABLE_INIT_ROWS_CNT %>,
|
|
startCols: <%= Constants::HANDSONTABLE_INIT_COLS_CNT %>,
|
|
rowHeaders: true,
|
|
colHeaders: true,
|
|
fillHandle: false,
|
|
formulas: true,
|
|
data: JSON.parse(contents.attr('value')).data,
|
|
cell: JSON.parse(metadata.val() || '{}').cells || [],
|
|
readOnly: true
|
|
});
|
|
var hot = $container.handsontable('getInstance');
|
|
|
|
setTimeout(() => {
|
|
hot.render()
|
|
}, 500)
|
|
});
|
|
|
|
window.print();
|
|
</script>
|
|
</body>
|
|
</html>
|