if (fld.toUpperCase() == queryTitleField.toUpperCase())
{
title = featureSet.fieldAliases[fld] + ":" + value;
if (!title)
title = widgetTitle;
}
// eliminato l'ele altrimenti non funzionava il link items
// here i've remove else condition...............
if (fld.toUpperCase() == queryLinkField.toUpperCase())
{
link = value;
}
else
{
if ((fld.toUpperCase() != queryTitleField.toUpperCase()) &&
(fld.toUpperCase() != "SHAPE_LENGTH")&& (fld.toUpperCase() != "SHAPE_AREA"))
{
content += featureSet.fieldAliases[fld] + ": " + value + "\n";
}
}
Can I open another widget for read other data (from other tables, numeric no features classe) of my object?This is possible but, it will take A LOT of custom code on your part.