The PXDBWeblink field currently opens as a new tab.
Does anyone know if it’s possible to have it open as a new window?
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
The PXDBWeblink attribute itself does not support opening a link in a new window directly, but you can achieve this through customization.
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");
}
}
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.