Created
November 27, 2015 08:54
-
-
Save smarenich/5bdd576651276d47758d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<px:PXSmartPanel ID="pnlCopyCompany" runat="server" CaptionVisible="True" Caption="My Command" | |
Style="position: static" LoadOnDemand="True" Key="MyPanel" AutoCallBack-Target="frmMyCommand" | |
AutoCallBack-Command="Refresh" DesignView="Content"> | |
<px:PXFormView ID="frmMyCommand" runat="server" SkinID="Transparent" DataMember="MyPanel" DataSourceID="ds" EmailingGraph=""> | |
<Template> | |
<px:PXLayoutRule runat="server" ControlSize="M" LabelsWidth="M" StartColumn="True" /> | |
<px:PXLabel ID="lblWarning" runat="server" Encode="True"> | |
WARNING: Some Action. | |
</px:PXLabel> | |
<px:PXSelector ID="edMyField" runat="server" AutoRefresh="True" DataField="MyField" DataSourceID="ds" /> | |
<px:PXPanel ID="PXPanel1" runat="server" SkinID="Buttons"> | |
<px:PXButton ID="btnMyCommandOK" runat="server" DialogResult="OK" Text="OK"> | |
<AutoCallBack Command="Save" Target="frmMyCommand" /> | |
</px:PXButton> | |
<px:PXButton ID="btnMyCommandCancel" runat="server" DialogResult="Cancel" Text="Cancel" /> | |
</px:PXPanel> | |
</Template> | |
</px:PXFormView> | |
</px:PXSmartPanel> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment