Commit 5aa0e913 by Kim Eunchul

#40808 【TECSS Win 1.9.2.6】ビューア内で「(」検索すると、エラー表示される

parent 4a9d0ebb
......@@ -83,6 +83,7 @@
"txtTextCopy":"テキストコピー",
"txtNoTextCopy":"テキストがありません。",
"txtNoSearchResult":"検索結果がありません。",
"txtErrorSearchResult":"検索構文に誤りがあります。",
"msgShioriNotExists":"しおりがありません",
"msgPwdChangeOK":"パスワードを変更しました。",
"msgPwdChangeNG":"パスワード変更に失敗しました。再入力してください。※注意:新規パスワードには英字および数字両方を含める必要があります。",
......
......@@ -347,7 +347,7 @@ CONTENTSEARCH.renderContent = function(id, text, division, type, order, offset,
}
// Toggle scroll to top Control
CONTENTSEARCH.handleBackToTop();
CONTENTSEARCH.handleBackToTop(params.searchText);
// I18N.changeLanguage(ClientData.userInfo_language());
I18N.i18nReplaceText();
......@@ -355,7 +355,7 @@ CONTENTSEARCH.renderContent = function(id, text, division, type, order, offset,
};
// Handle Back To Top Button
CONTENTSEARCH.handleBackToTop = function() {
CONTENTSEARCH.handleBackToTop = function(searchText) {
if (ClientData.searchCond_recordTo() >= CONTENTSEARCH.totalPage) {
$('#control-nextrecord').css('visibility', 'hidden');
} else {
......@@ -364,7 +364,7 @@ CONTENTSEARCH.handleBackToTop = function() {
if (CONTENTSEARCH.totalPage == 0) {
$('#control-nextrecord').css('visibility', 'hidden');
CONTENTSEARCH.displayResultNoRecord();
CONTENTSEARCH.displayResultNoRecord(searchText);
CONTENTSEARCH.noRecordFlg = true;
} else {
$('#msgSearchNotExist').hide();
......@@ -1132,14 +1132,22 @@ CONTENTSEARCH.searchEventButtonFunction = function() {
}
}
}
if(searchText == ")"){
myQuery += ' &&';
}
if (eval(myQuery)) {
//is not correct query
}
}catch(error){
if(searchText.length === 0 || !searchText.trim()){
searchText = "invaildsearchtextzeroresultfoundEmpty";
}else{
searchText = "invaildsearchtextzeroresultfound";
}
}
}
if(count > 5){
alert('語句数は最大5つです');
return;
......@@ -1325,11 +1333,16 @@ CONTENTSEARCH.formatDisplayMoreRecord = function() {
};
CONTENTSEARCH.displayResultNoRecord = function() {
CONTENTSEARCH.displayResultNoRecord = function(searchText) {
I18N.i18nReplaceText();
// $('#content-grid').html(I18N.i18nText('msgSearchNotExist'));
// $('#content-grid').css({ 'text-align': 'left', 'margin-top': '20px',
// 'clear': 'both' });
if(searchText == "invaildsearchtextzeroresultfound"){
$('#msgSearchNotExist').attr("lang", "txtErrorSearchResult");
}else{
$('#msgSearchNotExist').attr("lang", "msgSearchNotExist");
}
$('#content-grid').html('');
$('#msgSearchNotExist').show();
$('#msgSearchNotExist').css({
......
......@@ -293,7 +293,7 @@ HEADER.searchHeaderButtonFunction = function(){
count++;
}
}
console.log(myArray);
if(count > 5){
alert('語句数は最大5つです');
return;
......@@ -360,6 +360,10 @@ HEADER.searchHeaderButtonFunction = function(){
}
}
}
if(searchText == ")"){
myQuery += ' &&';
}
if (eval(myQuery)) {
//is not correct query
}
......@@ -381,7 +385,13 @@ HEADER.searchHeaderButtonFunction = function(){
alert('語句数は最大5つです');
return;
}
if(searchText.length === 0 || !searchText.trim()){
ClientData.searchCond_searchText("invaildsearchtextzeroresultfoundEmpty");
}else{
ClientData.searchCond_searchText("invaildsearchtextzeroresultfound");
}
ClientData.searchCond_searchDivision(searchDivision);
ClientData.searchCond_searchText_Dummy(searchText);
//window.location = COMMON.ScreenIds.ContentSearch;
......
......@@ -82,6 +82,7 @@
"txtTextCopy":"テキストコピー",
"txtNoTextCopy":"テキストがありません。",
"txtNoSearchResult":"検索結果がありません。",
"txtErrorSearchResult":"検索構文に誤りがあります。",
"msgShioriNotExists":"しおりがありません",
"msgPwdChangeOK":"パスワードを変更しました。",
"msgPwdChangeNG":"パスワード変更に失敗しました。再入力してください。※注意:新規パスワードには英字および数字両方を含める必要があります。",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment