Commit dd038242 by Kim Eunchul

#40365 【TECSS(Biz) webviewer 1.9】一覧画面で検索時にエラーを起こすキーワードがある

parent fd03acae
......@@ -1043,7 +1043,7 @@ CONTENTSEARCH.searchEventButtonFunction = function() {
return;
}
if ($('#txtSearchWs').val() != '' && $('#txtSearchWs').val() != '""') {
if ($('#txtSearchWs').val() != '' && $('#txtSearchWs').val() != '\"\"') {
try{
......
......@@ -735,7 +735,7 @@ CONTENTVIEW.searchHandle = function() {
return;
}
if ($('#txtSearch').val() != '' && $('#txtSearch').val() != '""') {
if ($('#txtSearch').val() != '' && $('#txtSearch').val() != '\"\"') {
var dataStored = CONTENTVIEW_GENERAL.arrThumbnailsLoaded;
var contentPage = CONTENTVIEW_GENERAL.dataWebContentPage.pages;
var sPageNo = [];
......
......@@ -269,7 +269,7 @@ HEADER.searchHeaderButtonFunction = function(){
alert('200字以下のテキストを入力してください');
return;
}
if ($('#searchbox-key').val() != '' && $('#searchbox-key').val() != '""') {
if ($('#searchbox-key').val() != '' && $('#searchbox-key').val() != '\"\"') {
try{
//seperate string
var myRegexp = /[^\s"]+|"([^"]*)"/gi;
......
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