We are working on an AP automation integration, and the invoice paperwork will be held on an external site. We will get a link to the document, but I wanted to be able to surface that link as a clickable link on the AP Invoice tracker/entry screens for the users to be able to go look at the invoice document if there are any questions or discrepancies. I do not see a control in the toolbox, so I am wondering if we have to put it into some action code to do this, or is there a better solution?
Well I figured it out just a few minutes after posting. I ended up creating a button to launch the browser with the link as a paramater:
private void btnOpenLink_Click(object sender, System.EventArgs args)
{
// ** Place Event Handling Code Here **
EpiTextBox txtLink = (EpiTextBox)csm.GetNativeControlReference("94eb5220-c1ea-4886-89c5-9cf33af25cf9");
string link = txtLink.Text;
if (! String.IsNullOrEmpty(link)) {
Process.Start("chrome.exe",link);
}
}