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
e3133b24
Commit
e3133b24
authored
Dec 09, 2020
by
Kim Eunchul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#40708 【TECSS(Biz) webviewer/Win 1.9】【仕様確認】同じ検索キーワードで動作が異なるものがある
parent
17d2fbd6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
3 deletions
+15
-3
abvw/common/js/common.js
+10
-1
abvw/js/contentsearch.js
+1
-1
abvw/js/header.js
+4
-1
No files found.
abvw/common/js/common.js
View file @
e3133b24
...
...
@@ -296,6 +296,8 @@ COMMON.Keys = {
contentInfo_contentType
:
'contentInfo_contentType'
,
// Session :検索条件(searchCond)_検索テキスト:String
searchCond_searchText
:
'searchText'
,
// Session :検索条件(searchCond)_検索テキスト:String
searchCond_searchText_dummy
:
'searchText_dummy'
,
// Session :検索条件(searchCond)_検索区分:Interger(1:コンテンツ検索, 2:タグ検索, 3:全文検索)
searchCond_searchDivision
:
'searchCond_searchDivision'
,
// Session :検索条件(searchCond)_ソート基準:Interger(1:タイトル名, 2:タイトル名(かな), 3:公開順)
...
...
@@ -1568,7 +1570,14 @@ var ClientData = {
return
SessionStorageUtils
.
get
(
COMMON
.
Keys
.
searchCond_searchText
);
}
},
// Session :検索条件(searchCond)_検索テキスト:String
searchCond_searchText_Dummy
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
COMMON
.
Keys
.
searchCond_searchText_Dummy
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
COMMON
.
Keys
.
searchCond_searchText_Dummy
);
}
},
// Session :検索条件(searchCond)_検索区分:Interger(1:コンテンツ検索, 2:タグ検索, 3:全文検索)
searchCond_searchDivision
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
...
...
abvw/js/contentsearch.js
View file @
e3133b24
...
...
@@ -186,7 +186,7 @@ CONTENTSEARCH.abapi = function(name, param, method, callback) {
// Initial screen
CONTENTSEARCH
.
initialScreen
=
function
()
{
var
searchText
=
ClientData
.
searchCond_searchText
();
var
searchText
=
ClientData
.
searchCond_searchText
_Dummy
();
var
searchDivision
=
ClientData
.
searchCond_searchDivision
();
$
(
'#txtSearchWs'
).
val
(
searchText
);
...
...
abvw/js/header.js
View file @
e3133b24
...
...
@@ -382,6 +382,7 @@ HEADER.searchHeaderButtonFunction = function(){
}
ClientData
.
searchCond_searchText
(
"invaildsearchtextzeroresultfound"
);
ClientData
.
searchCond_searchDivision
(
searchDivision
);
ClientData
.
searchCond_searchText_Dummy
(
searchText
);
//window.location = COMMON.ScreenIds.ContentSearch;
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentSearch
);
return
;
...
...
@@ -409,7 +410,9 @@ HEADER.searchHeaderButtonFunction = function(){
{
searchDivision
=
$
(
'#searchbox-body'
).
val
();
}
ClientData
.
searchCond_searchText
(
searchText
);
ClientData
.
searchCond_searchText
(
searchText
);
ClientData
.
searchCond_searchText_Dummy
(
searchText
);
ClientData
.
searchCond_searchDivision
(
searchDivision
);
//window.location = COMMON.ScreenIds.ContentSearch;
AVWEB
.
avwScreenMove
(
COMMON
.
ScreenIds
.
ContentSearch
);
...
...
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