I created my own export function in the Umbraco Backoffice which is located on the following URL: /umbraco/backoffice/export/event/{id}. Now I want to create a clickable URL inside my UIOMaticListView by using a UIOMaticListViewField on the following way:
[Ignore]
[UIOMaticListViewField(Name = "Exporteer")]
public string Export { get { return ("<a href='/umbraco/backoffice/export/event/8' target='_blank'>Exporteer Evenement</a>"); } }
Unfortunately the output of the UIOMaticListViewField is just a plain string inside the ListView and not formatted to a HTML href.
I am not sure of how to fix this, can anyone help me out of this one?
UIOMaticListViewField parse HTML
Hi,
I created my own export function in the Umbraco Backoffice which is located on the following URL: /umbraco/backoffice/export/event/{id}. Now I want to create a clickable URL inside my UIOMaticListView by using a UIOMaticListViewField on the following way:
Unfortunately the output of the UIOMaticListViewField is just a plain string inside the ListView and not formatted to a HTML href.
I am not sure of how to fix this, can anyone help me out of this one?
Kind regards,
Yanick
Comment author was deleted
Hi Yanick, maybe try setting the View param on your UIOMaticListViewField attribute to your custom view
is working on a reply...