CodePudding user response:
You can use custom HTML to achieve that.
https://github.com/generic-ui/generic-ui/issues/11
......
{
header: 'GuiCellView.LINK',
field: 'wiki',
type: GuiDataType.STRING,
view: (value: string, obj: any) => {
return `<a href="${value}" target="_blank">${obj.name}</a>`;
},
},
......