Commit 7d27facd by Kim Eunchul

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

parent dd038242
...@@ -1044,7 +1044,7 @@ CONTENTSEARCH.searchEventButtonFunction = function() { ...@@ -1044,7 +1044,7 @@ CONTENTSEARCH.searchEventButtonFunction = function() {
} }
if ($('#txtSearchWs').val() != '' && $('#txtSearchWs').val() != '\"\"') { if ($('#txtSearchWs').val() != '' && $('#txtSearchWs').val() != '\"\"') {
console.log($('#txtSearchWs').val());
try{ try{
//seperate string //seperate string
......
...@@ -736,6 +736,7 @@ CONTENTVIEW.searchHandle = function() { ...@@ -736,6 +736,7 @@ CONTENTVIEW.searchHandle = function() {
} }
if ($('#txtSearch').val() != '' && $('#txtSearch').val() != '\"\"') { if ($('#txtSearch').val() != '' && $('#txtSearch').val() != '\"\"') {
console.log($('#txtSearch').val());
var dataStored = CONTENTVIEW_GENERAL.arrThumbnailsLoaded; var dataStored = CONTENTVIEW_GENERAL.arrThumbnailsLoaded;
var contentPage = CONTENTVIEW_GENERAL.dataWebContentPage.pages; var contentPage = CONTENTVIEW_GENERAL.dataWebContentPage.pages;
var sPageNo = []; var sPageNo = [];
......
...@@ -270,6 +270,7 @@ HEADER.searchHeaderButtonFunction = function(){ ...@@ -270,6 +270,7 @@ HEADER.searchHeaderButtonFunction = function(){
return; return;
} }
if ($('#searchbox-key').val() != '' && $('#searchbox-key').val() != '\"\"') { if ($('#searchbox-key').val() != '' && $('#searchbox-key').val() != '\"\"') {
console.log($('#searchbox-key').val());
try{ try{
//seperate string //seperate string
var myRegexp = /[^\s"]+|"([^"]*)"/gi; 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