Hi there,
i am struggling with generating a clickable link from column of same row.
I would like the user to enter a link in the column LINK and a clickable link should be generated in the next row column (LINK-TEST) on every value change (see attached picture). The perfect way would be a little HTML button, so i should be able to set the "[TECH] angeschaut" checkbox when clicking.
What i am searching for:
1) a way to implement EMBEDDED HTML with usage of row value as parameter
OR
2) any other idea ;-)
Code for the HTML Button could be like (eg. is for stand-alone button):
<div style="text-align: center;">
<button
style=
"
background-color:#C8DEB6;
color:yellow;
font-size: 20px;
text-shadow: 1px 1px 1px #000;
border-radius: 10px;
box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6), inset -2px -2px 3px rgba(0, 0, 0, .6);
"
onclick="window.open(GetValue('#{FLD:1201}#'), '_blank'); SetValue('#{FLD:1202}#', 1);">
<strong>Open Youtube</strong>
</button>
</div>
************
{FLD:1201} = Link
{FLD:1202} = check box
************
Thanks in advance,
Björn Poller