Skip to main content
Solved

PXDBWeblink field to open as new window

  • October 28, 2024
  • 1 reply
  • 40 views

The PXDBWeblink field currently opens as a new tab.

Does anyone know if it’s possible to have it open as a new window?

Best answer by jinin

Hi @trangn ,

The PXDBWeblink attribute itself does not support opening a link in a new window directly, but you can achieve this through customization.

  • Create a button that opens the link in a new window when clicked. 
  • Use the existing DAC field(Website) or define the Field in the DAC field(documentationUrl) as a standard PXDBString 
  • Add a Custom Action in the Graph that reads the URL and opens it in a new window.

Example:

public class InventoryItemMaint : PXGraph<InventoryItemMaint, InventoryItem>
{
    public PXSelect<InventoryItem> InventoryItems;

    public PXAction<InventoryItem> OpenDocumentation;
    [PXButton(CommitChanges = true)]
    [PXUIField(DisplayName = "Open Documentation", MapEnableRights = PXCacheRights.Select, MapViewRights = PXCacheRights.Select)]
    protected void openDocumentation()
    {
        var row = InventoryItems.Current;
        if (row != null && !string.IsNullOrEmpty(row.GetExtension<InventoryItemExt>().UsrDocumentationUrl))
        {
            var url = row.GetExtension<InventoryItemExt>().UsrDocumentationUrl;
            throw new PXRedirectToUrlException(url, "_blank", "Open Documentation");
        }
    }
}
 

View original
Did this topic help you find an answer to your question?

1 reply

jinin
Pro I
Forum|alt.badge.img+11
  • Pro I
  • 701 replies
  • Answer
  • October 28, 2024

Hi @trangn ,

The PXDBWeblink attribute itself does not support opening a link in a new window directly, but you can achieve this through customization.

  • Create a button that opens the link in a new window when clicked. 
  • Use the existing DAC field(Website) or define the Field in the DAC field(documentationUrl) as a standard PXDBString 
  • Add a Custom Action in the Graph that reads the URL and opens it in a new window.

Example:

public class InventoryItemMaint : PXGraph<InventoryItemMaint, InventoryItem>
{
    public PXSelect<InventoryItem> InventoryItems;

    public PXAction<InventoryItem> OpenDocumentation;
    [PXButton(CommitChanges = true)]
    [PXUIField(DisplayName = "Open Documentation", MapEnableRights = PXCacheRights.Select, MapViewRights = PXCacheRights.Select)]
    protected void openDocumentation()
    {
        var row = InventoryItems.Current;
        if (row != null && !string.IsNullOrEmpty(row.GetExtension<InventoryItemExt>().UsrDocumentationUrl))
        {
            var url = row.GetExtension<InventoryItemExt>().UsrDocumentationUrl;
            throw new PXRedirectToUrlException(url, "_blank", "Open Documentation");
        }
    }
}
 


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings