I would like to display a "DOC" link in a Webgrid when a document (path) exists.
The document full path is constructed from a generic path (path data stored in the settings table) and a document specific path (path data stored in another table).
The below will work but there is no condition and no constructed path !
meetingsGrid.Column("Agenda", format: @<a href="document full path">DOC</a>)
This does not work:
meetingsGrid.Column("Agenda", format: @<a href="generic path" + "document specific path">DOC</a>)
Tried this:
meetingsGrid.Column("Agenda", format: @<a href="@Url.Action(Path.Combine(@genericpath,specificpath))">DOC</a>)
I have tried to add some conditions but even with the full path, I couldn't make it work :-(
meetingsGrid.Column("Agenda", format: @if(meetingsData.AgendaPath!=null){@<a href="fullpath">DOC</a>)}else{@Html.Raw("")}
meetingsGrid.Column("Agenda", format: (item) => @Html.Raw((item.AgendaPath!=null) ? (@<a href="fullpath">DOC</a>) : ""))
Thanks for your help