Opened 16 years ago
Last modified 16 years ago
#693 closed defect
PHP and ASP AJAX viewer fixes needed for simple search on NULL values - MgProxyFeatureReader.GetProperty line 448 — at Version 1
Reported by: | cgountanis | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | 2.1 |
Component: | AJAX Viewer | Version: | 2.0.1 |
Severity: | blocker | Keywords: | IsNull MgProxyFeatureReader GetProperty AJAX Viewer |
Cc: | External ID: |
Description (last modified by )
AJAX Viewer Fixes for PHP and ASP.NET - Value for property is null. - MgProxyFeatureReader.GetProperty line 448
Will these changes or something like this be implemented in the next release of the basic AJAX viewer? We really should not have to edit the ajaxviewer* code every implementation. Causes many problems with services packs updates and organization.
PHP - Add if statement around the switch($propType) area.
Line 158 if ($features->IsNull($propName)) { $val="(null)"; } else {
ASP.NET - Add if statement around the switch (propType) area. Line 163
if(features.IsNull(prop)) { val = "(Null)"; } else {
Note:
See TracTickets
for help on using tickets.
minor formatting