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
ad7967e6
Commit
ad7967e6
authored
Mar 26, 2014
by
Masaru Abe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ダイハツ対応
parent
04f07fde
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
9 deletions
+40
-9
abvw/js/contentsearch.js
+13
-3
abvw/js/header.js
+1
-0
abvw/js/history.js
+13
-3
abvw/js/home.js
+13
-3
No files found.
abvw/js/contentsearch.js
View file @
ad7967e6
...
...
@@ -612,9 +612,19 @@ function canvasClickFunction(e){
//Re-render page from and total record
function
reRenderPageNumber
(
dispRecord
,
dispTotal
){
$
(
'#dispPage'
).
html
(
dispRecord
);
$
(
'#totalPage'
).
html
(
dispTotal
);
$
(
'.pageNumControl'
).
css
(
'visibility'
,
'visible'
);
if
(
dispTotal
){
$
(
'#dispPage'
).
html
(
dispRecord
);
$
(
'#totalPage'
).
html
(
dispTotal
);
$
(
'#dispPage'
).
css
(
'visibility'
,
'visible'
);
$
(
'#totalPage'
).
css
(
'visibility'
,
'visible'
);
$
(
'.pageNumControl'
).
css
(
'visibility'
,
'visible'
);
}
else
{
$
(
'#dispPage'
).
css
(
'visibility'
,
'hidden'
);
$
(
'#totalPage'
).
css
(
'visibility'
,
'hidden'
);
$
(
'.pageNumControl'
).
css
(
'visibility'
,
'hidden'
);
}
};
//Show Next Record Function
...
...
abvw/js/header.js
View file @
ad7967e6
...
...
@@ -70,6 +70,7 @@ $(document).ready(function () {
$
(
'#li-login-username'
).
show
();
//Display user name
$
(
'#login-username'
).
text
(
ClientData
.
userInfo_userName
());
$
(
'#login-username'
).
attr
(
"title"
,
ClientData
.
userInfo_userName
());
}
$
(
'#dlgConfirmBackup-backup'
).
click
(
confirmWithBackupFunction
);
...
...
abvw/js/history.js
View file @
ad7967e6
...
...
@@ -445,9 +445,19 @@ function canvasClickFunction(e){
//Re-render page from and total record
function
reRenderPageNumber
(
dispRecord
,
dispTotal
){
$
(
'#dispPage'
).
html
(
contentViewData
.
length
);
$
(
'#totalPage'
).
html
(
contentViewData
.
length
);
$
(
'.pageNumControl'
).
css
(
'visibility'
,
'visible'
);
if
(
contentViewData
.
length
){
$
(
'#dispPage'
).
html
(
contentViewData
.
length
);
$
(
'#totalPage'
).
html
(
contentViewData
.
length
);
$
(
'#dispPage'
).
css
(
'visibility'
,
'visible'
);
$
(
'#totalPage'
).
css
(
'visibility'
,
'visible'
);
$
(
'.pageNumControl'
).
css
(
'visibility'
,
'visible'
);
}
else
{
$
(
'#dispPage'
).
css
(
'visibility'
,
'hidden'
);
$
(
'#totalPage'
).
css
(
'visibility'
,
'hidden'
);
$
(
'.pageNumControl'
).
css
(
'visibility'
,
'hidden'
);
}
};
//Sort By Title Function
...
...
abvw/js/home.js
View file @
ad7967e6
...
...
@@ -1321,9 +1321,19 @@ function AddGroup_Callback(selectedNode) {
//Re-render page from and total record
function
reRenderPageNumber
(
dispRecord
,
dispTotal
)
{
$
(
'#dispPage'
).
html
(
dispRecord
);
$
(
'#totalPage'
).
html
(
dispTotal
);
$
(
'.pageNumControl'
).
css
(
'visibility'
,
'visible'
);
if
(
dispTotal
){
$
(
'#dispPage'
).
html
(
dispRecord
);
$
(
'#totalPage'
).
html
(
dispTotal
);
$
(
'#dispPage'
).
css
(
'visibility'
,
'visible'
);
$
(
'#totalPage'
).
css
(
'visibility'
,
'visible'
);
$
(
'.pageNumControl'
).
css
(
'visibility'
,
'visible'
);
}
else
{
$
(
'#dispPage'
).
css
(
'visibility'
,
'hidden'
);
$
(
'#totalPage'
).
css
(
'visibility'
,
'hidden'
);
$
(
'.pageNumControl'
).
css
(
'visibility'
,
'hidden'
);
}
};
//Call API
...
...
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