mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
71 lines
1.6 KiB
JavaScript
Executable File
71 lines
1.6 KiB
JavaScript
Executable File
var data = [
|
|
{
|
|
"name": "bootstrap-table",
|
|
"stargazers_count": "526",
|
|
"forks_count": "122",
|
|
"description": "An extended Bootstrap table with radio, checkbox, sort, pagination, and other added features. (supports twitter bootstrap v2 and v3) "
|
|
},
|
|
{
|
|
"name": "multiple-select",
|
|
"stargazers_count": "288",
|
|
"forks_count": "150",
|
|
"description": "A jQuery plugin to select multiple elements with checkboxes :)"
|
|
},
|
|
{
|
|
"name": "bootstrap-show-password",
|
|
"stargazers_count": "32",
|
|
"forks_count": "11",
|
|
"description": "Show/hide password plugin for twitter bootstrap."
|
|
},
|
|
{
|
|
"name": "blog",
|
|
"stargazers_count": "13",
|
|
"forks_count": "4",
|
|
"description": "my blog"
|
|
},
|
|
{
|
|
"name": "scutech-redmine",
|
|
"stargazers_count": "6",
|
|
"forks_count": "3",
|
|
"description": "Redmine notification tools for chrome extension."
|
|
}
|
|
];
|
|
|
|
$(function () {
|
|
$('#smptable').bootstrapTable({
|
|
data: data
|
|
});
|
|
});
|
|
|
|
|
|
/*table column*/
|
|
|
|
function buildTable($el, cells, rows) {
|
|
var i, j, row,
|
|
columns = [],
|
|
data = [];
|
|
|
|
for (i = 0; i < cells; i++) {
|
|
columns.push({
|
|
field: 'field' + i,
|
|
title: 'Cell' + i
|
|
});
|
|
}
|
|
for (i = 0; i < rows; i++) {
|
|
row = {};
|
|
for (j = 0; j < cells; j++) {
|
|
row['field' + j] = 'Row-' + i + '-' + j;
|
|
}
|
|
data.push(row);
|
|
}
|
|
$el.bootstrapTable('destroy').bootstrapTable({
|
|
columns: columns,
|
|
data: data
|
|
});
|
|
}
|
|
|
|
$(function () {
|
|
buildTable($('#clmtable'), 50, 50);
|
|
});
|
|
|