I am using the k-table
component in a custom field plugin. Some of the entrys in the table are external URLs. Is there a way to set it so that clicking them opens in a new tab?
In the object you pass to the columns
prop, you can define a type
for each column that is used for the preview in the table cell. The various types you can find here: Kirby Panel
<k-table :columns="{myUrl: {type: 'url'}}" :rows="rows" />
Ah… setting it to link rather then URL did the trick