[gen] When param Ref.select is a Search instance, Search.name can be ommitted; added code that shows a warning: Appy is not compatible with MSIE below 9.
This commit is contained in:
parent
a45dfa8dd0
commit
dda894089a
14 changed files with 54 additions and 4 deletions
|
@ -47,6 +47,7 @@ img { border: 0; vertical-align: middle }
|
|||
|
||||
.main { width: 900px; height: 95%; box-shadow: 3px 3px 3px #A9A9A9 }
|
||||
.mainWide { width: 100%; height: 100% }
|
||||
.wrongBrowser { height: 15px; color: red; text-align: center }
|
||||
.top { height: 89px; margin-left: 3em; vertical-align: top;
|
||||
background-color: white }
|
||||
.lang { margin-right: 6px }
|
||||
|
|
|
@ -236,7 +236,7 @@ function askQueryResult(hookId, objectUrl, className, searchName, popup,
|
|||
var filterWidget = document.getElementById(hookId + '_' + filterKey);
|
||||
if (filterWidget && filterWidget.value) {
|
||||
params['filterKey'] = filterKey;
|
||||
params['filterValue'] = filterWidget.value;
|
||||
params['filterValue'] = encodeURIComponent(filterWidget.value);
|
||||
}
|
||||
}
|
||||
askAjaxChunk(hookId, 'GET', objectUrl, 'pxQueryResult', params, null,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue