|
@@ -551,7 +551,9 @@ class AttributeAnnotation extends BaseWidget {
|
|
|
var that = <any>this;
|
|
|
if (data.code == 10000) {
|
|
|
if (data.result.rows && data.result.rows.length > 0) {
|
|
|
+ var SID="RQ";
|
|
|
$.each(data.result.rows, function (index2, item2) {
|
|
|
+
|
|
|
if (item2.visible) {
|
|
|
var regx = /null/i;
|
|
|
var value = that.item.feature.attributes[item2.name];
|
|
@@ -568,6 +570,10 @@ class AttributeAnnotation extends BaseWidget {
|
|
|
tr = "<tr><td>" + item2.alias + "</td>" + "<td>" + value + "</td></tr>";
|
|
|
that.datarows.append(tr);
|
|
|
tr = "";
|
|
|
+
|
|
|
+ if(item2.name=="sid"||item2.name=="sid".toLocaleUpperCase()){
|
|
|
+ SID=that.item.feature.attributes[item2.name];
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
|
|
@@ -578,9 +584,6 @@ class AttributeAnnotation extends BaseWidget {
|
|
|
else {
|
|
|
var SID="RQ";
|
|
|
$.each(that.item.feature.attributes, function (index2, item2) {
|
|
|
- if(index2=="sid"||index2=="sid".toLocaleUpperCase()){
|
|
|
- SID=SID+item2;
|
|
|
- }
|
|
|
if (!that.that.config.exceptAttribute.some(function (x) { return index2 == x; })) {
|
|
|
var regx = /null/i;
|
|
|
var value = item2;
|
|
@@ -597,6 +600,10 @@ class AttributeAnnotation extends BaseWidget {
|
|
|
tr = "<tr><td>" + that.item.alias[index2] + "</td>" + "<td>" + value + "</td></tr>";
|
|
|
that.datarows.append(tr);
|
|
|
tr = "";
|
|
|
+
|
|
|
+ if(item2.name=="sid"||item2.name=="sid".toLocaleUpperCase()){
|
|
|
+ SID=that.item.feature.attributes[item2.name];
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
});
|