Hello,
I created a GQI custom operator script to add a column to my query (coma separeted values), used by a table component.
In my example, the DOM instance for the row "ID-00021" has a reference to other children DOM instances with IDs "#00156" and "#00157".
I would like to create an html link for each (#00156 and #00157), opening a new page.
Using GQIStringColumn, and i the following code to return cell value.
(GQIEditableRow)
row.SetValue(_jobsColumn, string.Join(" , ", jobList));
I tried to inject html with this method, but value is shown as string in UI (not interpreted as HTML).
Do you have a solution or a workaround?
Regards
Kévin
Hi Kevin,
By default, the cells of a table will not show HTML as HTML. To view this as HTML, the only thing you have to do is to overwrite the cell with a custom template. Even the default template will make this work. This is because cell templates can show HTML in the text shape, which is the default for the override of a string column.
Hi Wout!
works like a charm!
Thanks