如何在FormTab页面中显示或隐藏选项卡

时间:2015-04-25 08:13:27

标签: cloud erp acumatica

我创建了一个FormTab页面,在某些情况下我需要显示或隐藏选项卡。我在RowSelected Event中尝试PXUIFieldAttribute.SetVisibility,但它不起作用。

1 个答案:

答案 0 :(得分:2)

在标签项

上使用VisibleExp属性

或使用AllowSelect

您的选择

更新:使用探索源代码

查看ARDiscountEx
public virtual Boolean? ShowListOfItems {get {...};}

Aspx AR209500 形式:

<px:PXCheckBox SuppressLabel="True" ID="chkShowListOfItems" runat="server" DataField="showListOfItems" ></px:PXCheckBox>

标签项:

<px:PXTabItem Text="Items" BindingContext="DiscountForm" VisibleExp="DataControls[&quot;chkShowListOfItems&quot;].Value == true">