How to use "link" type dynamic column?

How do i provide text and ref for "link" type column when i specify it as a json in dynamic columns?
[{"name": "x", "type": "link", "mapper": ??}]

Hey @jasiek :))

You would need to pass "Render cell as pure HTML" in the dynamic column hash which is currently not supported. Read more here and here.

What you could do is just check the flag manually for that column and your dynamic logic will still work, try:

["id", 
 {
   name: "name", 
   type: "link",
   mapper: '<a href="{\{ self  }\}"> Text </a>'
 },
 "email"
]