Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_web
check
Commits
9a266c6c
Commit
9a266c6c
authored
Oct 20, 2022
by
NGUYEN HOANG SON
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add dashboard setting js
parent
1d9273f6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
12 deletions
+16
-12
abvw/html/dashboard.html
+12
-12
abvw/js/dashboardSetting/dashboard-setting.js
+4
-0
No files found.
abvw/html/dashboard.html
View file @
9a266c6c
...
...
@@ -121,39 +121,39 @@
<div
class=
"modal-dialog modal-dialog-centered"
role=
"document"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header bg-dark10"
>
<h5
class=
"modal-title"
>
ダッシュボード設定
</h5>
<h5
class=
"modal-title
multi-lang"
data-msg=
"dashboardSettingHeaderTitle
"
>
ダッシュボード設定
</h5>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-label=
"Close"
>
<span
aria-hidden=
"true"
>
×
</span>
</button>
</div>
<div
class=
"modal-body"
>
<table
class=
"w-100"
>
<table
class=
"w-100"
id=
"dashboardSettingItems"
>
<colgroup>
<col
span=
"1"
class=
"w-120px"
>
</colgroup>
<tbody>
<tr>
<th
class=
"fs-9 p-2 text-secondary"
>
新規報告
</th>
<td
class=
"p-2"
><div
class=
"toggle ml-auto"
><input
type=
"checkbox"
name=
"chk-new"
></div></td>
<th
class=
"fs-9 p-2 text-secondary
multi-lang"
data-msg=
"dashboardSettingNewReportTitle
"
>
新規報告
</th>
<td
class=
"p-2"
><div
id=
"newReport"
class=
"toggle ml-auto"
><input
type=
"checkbox"
name=
"chk-new"
></div></td>
</tr>
<tr>
<th
class=
"fs-9 p-2 text-secondary"
>
工程作業
</th>
<td
class=
"p-2"
><div
class=
"toggle ml-auto"
><input
type=
"checkbox"
name=
"chk-proccess"
></div></td>
<th
class=
"fs-9 p-2 text-secondary
multi-lang"
data-msg=
"dashboardSettingContinousWorkTitle
"
>
工程作業
</th>
<td
class=
"p-2"
><div
id=
"continousWork"
class=
"toggle ml-auto"
><input
type=
"checkbox"
name=
"chk-proccess"
></div></td>
</tr>
<tr>
<th
class=
"fs-9 p-2 text-secondary"
>
警告を含む作業
</th>
<td
class=
"p-2"
><div
class=
"toggle ml-auto"
><input
type=
"checkbox"
name=
"chk-alert"
></div></td>
<th
class=
"fs-9 p-2 text-secondary
multi-lang"
data-msg=
"dashboardSettingReportWarningTitle
"
>
警告を含む作業
</th>
<td
class=
"p-2"
><div
id=
"reportWarning"
class=
"toggle ml-auto"
><input
type=
"checkbox"
name=
"chk-alert"
></div></td>
</tr>
<tr>
<th
class=
"fs-9 p-2 text-secondary"
>
ダッシュボードをホーム画面にする
</th>
<td
class=
"p-2"
><div
class=
"toggle ml-auto"
><input
type=
"checkbox"
name=
"chk-home"
></div></td>
<th
class=
"fs-9 p-2 text-secondary
multi-lang"
data-msg=
"dashboardSettingDashboardHomeTitle
"
>
ダッシュボードをホーム画面にする
</th>
<td
class=
"p-2"
><div
id=
"dashboardHome"
class=
"toggle ml-auto"
><input
type=
"checkbox"
name=
"chk-home"
></div></td>
</tr>
</tbody>
</table>
</div>
<div
class=
"modal-footer"
>
<button
type=
"button"
class=
"btn btn-primary"
>
保存
</button>
<button
type=
"button"
class=
"btn btn-tertiary"
data-dismiss=
"modal"
>
キャンセル
</button>
<button
type=
"button"
class=
"btn btn-primary
multi-lang"
data-msg=
"dashboardSettingSaveButton"
onclick=
"DashboardSetting.save();
"
>
保存
</button>
<button
type=
"button"
class=
"btn btn-tertiary
multi-lang"
data-msg=
"dashboardSettingCancelButton
"
data-dismiss=
"modal"
>
キャンセル
</button>
</div>
</div>
</div>
...
...
abvw/js/dashboardSetting/dashboard-setting.js
View file @
9a266c6c
...
...
@@ -110,3 +110,7 @@ DashboardSetting.init = function () {
DashboardSetting
.
goBack
=
function
()
{
FOOTER
.
goDashboard
();
};
DashboardSetting
.
save
=
function
()
{
console
.
log
(
"DashboardSetting.save"
);
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment