[Mapbender-commits] r8747 - trunk/mapbender/http/geoportal
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Sun Dec 8 12:36:27 PST 2013
Author: armin11
Date: 2013-12-08 12:36:27 -0800 (Sun, 08 Dec 2013)
New Revision: 8747
Modified:
trunk/mapbender/http/geoportal/mod_pullInspireMonitoring.php
Log:
Bugfix for jquery ui datatable with more than 1500 elements
Modified: trunk/mapbender/http/geoportal/mod_pullInspireMonitoring.php
===================================================================
--- trunk/mapbender/http/geoportal/mod_pullInspireMonitoring.php 2013-12-08 20:33:25 UTC (rev 8746)
+++ trunk/mapbender/http/geoportal/mod_pullInspireMonitoring.php 2013-12-08 20:36:27 UTC (rev 8747)
@@ -555,10 +555,9 @@
$currentUuid = $sqlTable['uuid'][$i];
$metadataIndex++;
$output['aaData'][$metadataIndex]->detailImage = "<img id=\"expander\" src=\"../img/gnome/stock_zoom-in.png\">";
- //$output['aaData'][$metadataIndex]->title = $sqlTable['title'][$i];
-
- $output['aaData'][$metadataIndex]->title = "<a href=\"../php/mod_iso19139ToHtml.php?url=".urlencode($mapbenderUrl."/php/mod_dataISOMetadata.php?outputFormat=iso19139&id=".$sqlTable['uuid'][$i])."\">".$sqlTable['title'][$i]."</a>";
-
+ $output['aaData'][$metadataIndex]->title = $sqlTable['title'][$i];
+ //TODO: following has problems with more than 1300 entries!
+ //$output['aaData'][$metadataIndex]->title = "<a href=\"../php/mod_iso19139ToHtml.php?url=".urlencode($mapbenderUrl."/php/mod_dataISOMetadata.php?outputFormat=iso19139&id=".$sqlTable['uuid'][$i])."\">".$sqlTable['title'][$i]."</a>";
$output['aaData'][$metadataIndex]->uuid = $sqlTable['uuid'][$i];
$output['aaData'][$metadataIndex]->organization = $sqlTable['organization'][$i];
$insCat = '';
More information about the Mapbender_commits
mailing list