POS+ LOGO
基本形

基本形

基本形反転

縦組み

縦組み
ダウンロード
POS+ SERVICE LOGO
POS+food

POS+retail

POS+beauty

POS+lite

POS+connect

POS+pay

POS+timerecorder

POS+QSC

POS+engagement

ICON
共通
f0d7
<i class="fas fa-caret-down"></i>
f0d8
<i class="fas fa-caret-up"></i>
f2f5
<i class="fas fa-sign-out-alt"></i>
f362
<i class="fas fa-exchange-alt"></i>
f0dc
<i class="fas fa-sort"></i>
f54e
<i class="fas fa-store"></i>
f142
<i class="fas fa-ellipsis-v"></i>
f002
<i class="fas fa-search"></i>
f0b1
<i class="fas fa-briefcase"></i>
f013
<i class="fas fa-cog"></i>
f35d
<i class="fas fa-external-link-alt"></i>
COLOR
Primary Color
#xxx
Secondary Color
#xxx
Link
#xxx
Light gray
#xxx
Dark
#xxx
Success
#xxx
warn
#xxx
danger
#xxx
info
#xxx
TYPOGRAPHY
Header 1
color:#4a4a4aHeader 2
color:#4a4a4aThis is text.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
color:#0099d5/hover color:darken(#0099d5,7.5%)
COMPONENTS
Alignment
中央よせ
左よせ
右よせ
Text Color
必要に応じて色味を適用しますが、意味なく多色を使用するのは避けてください。
基本的に色味は変更する必要はありません。bootstrapを上書きする場合は他ページとの統一感などに注意!
プライマリーカラー
セカンダリーカラー
デンジャーカラー
ワーニングカラー
ライトグレーカラー
ダークグレーカラー
Button
Form
等幅にしたい場合はsegment__buttonに対してwidthを指定してください。
common.setSegmentSwitch();
Nav with Tabs
Step navigation
Tables
Header1 | Header2 | Header3 | Header4 | ||
---|---|---|---|---|---|
Header3-1 | Header3-2 | Header4-1 | Header4-2 | ||
Cell | Cell | Cell | Cell | Cell | Cell |
Cell | Cell | Cell | Cell | Cell | Cell |
Cell | Cell | Cell | Cell | Cell | Cell |
Header1 | Header2 | Header3 | Header4 |
---|---|---|---|
Cell | Cell | Cell | |
Cell | Cell | Cell | |
Cell | Cell | Cell |
$(document).ready(function () {
common.table = $("#datatable-sample1").dataTable({
// 件数切替機能 無効
lengthChange: false,
// 検索機能 無効
searching: false,
// ソート機能 無効
ordering: true,
// ソート機能 初期状態
// 例:order: [ [ 1, "asc" ] ]
// 情報表示 無効
info: false,
// ページング機能 無効
paging: false,
//縦方向のスクロール 有効
scrollY: "20vh",
//横方向のスクロール 無効
scrollX: false,
//特定のカラムのソート制御
columnDefs: [{ targets: "no-sorting",orderable: false }],
//件数が少ない時に縦サイズを省略する
scrollCollapse: true
});
});
Header1 | Header2 | Header3 | |
---|---|---|---|
Header3-1 | Header3-2 | ||
Cell | Cell | Cell | Cell |
Cell | Cell | Cell | Cell |
Cell | Cell | Cell | Cell |
Header1 | Header2 | Header3 |
---|---|---|
Cell | Cell | Cell |
Cell | Cell | Cell |
Cell | Cell | Cell |
$(document).ready(function () {
common.table = $("#datatable-sample3").dataTable({
// 件数切替機能 無効
lengthChange: false,
// 検索機能 無効
searching: false,
// ソート機能 無効
ordering: true,
// ソート機能 初期状態
// 例:order: [ [ 1, "asc" ] ]
// 情報表示 無効
info: false,
// ページング機能 無効
paging: false,
//縦方向のスクロール 有効
scrollY: "20vh",
//横方向のスクロール 無効
scrollX: false,
//特定のカラムのソート制御
columnDefs: [{ targets: "no-sorting",orderable: false }],
//件数が少ない時に縦サイズを省略する
scrollCollapse: true,
//ファイル出力
dom: 'Bfrtip',
buttons: [
'copyHtml5',
'excelHtml5',
'csvHtml5',
'pdfHtml5'
]
});
});
Header1 | Header2 | Header3 | Header4 | Header5 | Header6 | Header7 | Header8 | Header9 | Header10 | Header11 | Header12 |
---|---|---|---|---|---|---|---|---|---|---|---|
Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell | Cell |
$(document).ready(function () {
common.table = $("#datatable-sample4").dataTable({
// 件数切替機能 無効
lengthChange: false,
// 検索機能 無効
searching: false,
// ソート機能 無効
ordering: true,
// ソート機能 初期状態
// 例:order: [ [ 1, "asc" ] ]
// 情報表示 無効
info: false,
// ページング機能 無効
paging: false,
//横方向のスクロール 有効
scrollX: true,
//縦方向のスクロール 有効
scrollY: "20vh",
//列固定:2列
fixedColumns: {
leftColumns: 2,
},
//件数が少ない時に縦サイズを省略する
scrollCollapse: true,
//特定のカラムの制御
columnDefs: [{ targets: [0, 1], width: 100 },
{ targets: [2, 3, 4], width: 80 }]
});
});
//hover対応
$(document).on({
mouseenter: function () {
trIndex = $(this).index() + 1;
$("table.example-datatable-4").each(function (index) {
$(this).find("tr:eq(" + trIndex + ")").each(function (index) {
$(this).find("td").addClass("hover");
});
});
},
mouseleave: function () {
trIndex = $(this).index() + 1;
$("table.example-datatable-4").each(function (index) {
$(this).find("tr:eq(" + trIndex + ")").each(function (index) {
$(this).find("td").removeClass("hover");
});
});
}
}, ".example-datatable-4 tr");
$(window).on("resize", function () {
common.table.fnAdjustColumnSizing();
});
Seq. | Name | Age | |
---|---|---|---|
1 | Ben Affleck | 47 | |
2 | Christian Bale | 45 | |
3 | Adam West | 88 | |
4 | Michael Keaton | 68 |
$(document).ready(function () {
common.table = $("#datatable-sample5").dataTable({
// 件数切替機能 無効
lengthChange: false,
// 検索機能 無効
searching: false,
// ソート機能 無効
ordering: true,
// ソート機能 初期状態
// 例:order: [ [ 1, "asc" ] ]
// 情報表示 無効
info: false,
// ページング機能 無効
paging: false,
//縦方向のスクロール 有効
scrollY: "20vh",
//横方向のスクロール 無効
scrollX: false,
//件数が少ない時に縦サイズを省略する
scrollCollapse: true,
//並び替え機能 有効
rowReorder: true,
rowReorder: {
selector: 'td:last-child'
},
//特定カラムの制御
columnDefs: [
{ orderable: true, className: 'reorder', targets: 0 },
{ orderable: false, targets: '_all' }
]
});
});
Header1 | Header2 | Header3 |
---|
$(document).ready(function () {
common.table = $("#datatable-sample6").dataTable({
// 件数切替機能 無効
lengthChange: false,
// 検索機能 無効
searching: false,
// ソート機能 無効
ordering: true,
// ソート機能 初期状態
// 例:order: [ [ 1, "asc" ] ]
// 情報表示 無効
info: false,
// ページング機能 無効
paging: false,
//縦方向のスクロール 有効
scrollY: "20vh",
//横方向のスクロール 無効
scrollX: false,
//特定のカラムのソート制御
columnDefs: [{ targets: "no-sorting",orderable: false }],
//件数が少ない時に縦サイズを省略する
scrollCollapse: true,
//0件表示の時の文言をカスタムする
"language": {
"emptyTable": "何もないよ"
}
});
});
Cards
- リストの項目
- リストの項目
Tooltip
Badge
Modals
Collapse
Alerts
Breadcrumbs
Alerts
Alerts
Confirm
Tabulator
tabulator v4.9.1
http://tabulator.info/docs/4.9
下記以外はサンプルページを参照してください サンプルページ
基本的な使い方
編集モード
編集した後はcellに対してdata_modifiedクラスを付与してください。
入力不可の列に対してはdisable_editクラスを付与してください。
方法はサンプルを参照ください。