Is it possible to format the Feature Description panel to look like a 2-Column table?
I have about 10 fields that I would like to format in a table view to make it easier to read all of our parcel information (Parcel ID, Parcel Owner, Parcel Address, etc) I understand that we can see the table view by switching, but I would like it to show in the "compact view."
Thank you
0
-
Hi Jill,
This would not create a table per se but you could use HTML to format your feature description to appear in separate columns, for example:
<table style="width:100%">
<tbody><tr>
<th>Parcel</th>
<th>Parcel Owner</th>
<th>Parcel Address</th>
</tr>
<tr>
<td>{Parcel}</td>
<td>{ParcelOwner}</td>
<td>{ParcelAddress}</td>
</tr>
<tr>
<td><br/></td>
<td><br/></td>
<td><br/></td>
</tr>
</tbody></table>
This would give you your sets of results for each selected feature in a separate column with the attribute titles in bold in this case.
Hope this helps!
Harry0 -
Thanks both of you! 0
Du måste logga in om du vill lämna en kommentar.
Kommentarer
2 kommentarer