如何在 FormTab 页面中显示或隐藏标签
How to visible or invisible tab in FormTab Page
我创建了一个 FormTab 页面,在某些情况下我需要显示或隐藏选项卡。我在 RowSelected 事件中尝试了 PXUIFieldAttribute.SetVisibility
,但它不起作用。
在选项卡项上使用 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["chkShowListOfItems"].Value == true">
我创建了一个 FormTab 页面,在某些情况下我需要显示或隐藏选项卡。我在 RowSelected 事件中尝试了 PXUIFieldAttribute.SetVisibility
,但它不起作用。
在选项卡项上使用 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["chkShowListOfItems"].Value == true">