Hello,
Before I updated to NPM 10.4, I had my Node Details resource customized a little bit for ease of drilling into resources.
I did this by adding links to custom properties, letting the users click a mailto link to contact the node's infrastructure or application owner, plus a couple hyperlinks exclusive to the node (console, QuickBase, et cetera).
I did this by editing NodeDetails.ascx, as outlined in the following thread:
SSH from Node details screen
It seems with the update to 10.4, the format's changed a little. It actually looks a little simpler. Referencing a Custom Property used to look a little like this:
<tr>
<td class="Property" width="10"> </td>
<td class="PropertyHeader">Infrastructure Contact</td>
<td class="Property"> </td>
<td class="Property"><a href="mailto:<%#Eval("ObjectProperties[\"InfrastructureOwner\"]")%>"><%#Eval("ObjectProperties[\"InfrastructureOwner\"]")%> </a></td>
</tr>
Can someone update me with the right way to reference those custom properties as of 10.4?
Thanks!