Question
Is there a possibility to add links to text passages in the FRM file, for example with <a> tags?
Solution
Links are currently only provided for buttons. The badge In this case, it could be set up so that the button calls the URL entered. Examples:
Example 1:
<button title="URL Aufruf" tooltip="" readonly="false" width="130">
<select>select 'https://' + URLFIELD from TABLE where REFFIELD = [globalid]</select>
<action_execute />
</button>
Example 2:
<button title="URL Aufruf" tooltip="" readonly="false" width="130">
<select>select 'https://' + BESCHREIBUNG from WAS_DOKUMENT where HYDRANT_REF = [globalid]</select>
<action_execute />
</button>
Example 3:
<button title="ÖREB" tooltip="ÖREB Auszug herunterladen" readonly="false" left="400" width="50">
<select>
select 'http://rdppfvs.geopol.ch/v1/extract/reduced/pdf/' + av_liegenschaft.nbident + '/' + av_liegenschaft.nummer + '/?lang=de'
from av_liegenschaft
where av_liegenschaft.nummer=[nummer]
</select>
<action_execute />
</button>
Comments
0 comments
Article is closed for comments.