Hello all,
I was wondering can we open the dialog shown using the Vie.AskExt() method (it shows a nice and neat grid) in a new tab by existing tabs instead of displaying a dialog in a new window without going the long way of designing a grid … and all other required works to use in redirect? Here is the code:
public PXAction<MyDac> showHistory;
PXUIField(DisplayName = "Show History")]
PXButton]
public IEnumerable ShowHistory(PXAdapter adapter)
{
MyView.View.AskExt(); // Can I show this in a new tab?
return adapter.Get();
}