Spaltentyp 'link'
Live Beispiel
Beispielcode
context.enableModules();
const { TableGadget } = require("ou.sp.gadget.TableGadget");
const gadget = new TableGadget({
showOptions: false,
showFooter: false,
select: false,
rows: [
{
data: "http://one-unity.de",
},
{
data: "http://one-unity.de",
},
{
data: "http://one-unity.de",
},
],
columns: {
data: {
type: "link",
attributes: {
target: "_blank",
},
label: "",
},
},
});
context.returnValue = gadget.transfer();