Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@lekker-solutions
Created April 27, 2022 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lekker-solutions/39bf17b24bd304dcbbc45469c7d9cd13 to your computer and use it in GitHub Desktop.
Save lekker-solutions/39bf17b24bd304dcbbc45469c7d9cd13 to your computer and use it in GitHub Desktop.
ASPX Without Include
<%-- This is the Dialogs section of an ASPX page with the full dialog definition --%>
<asp:Content runat="server" ID="diags" ContentPlaceHolderID="phDialogs">
<px:PXSmartPanel ID="pnlQuoteFilter" runat="server" Caption="Quote Year" CaptionVisible="True" Key="QuoteFilter"
AutoReload="True" AutoRepaint="True" LoadOnDemand="true" AutoCallBack-Command="Refresh" AutoCallBack-Enabled="true"
AcceptButtonID="cbOk" Width="20%" Height="150px">
<px:PXFormView runat="server" ID="frmYearPick" Width="100%" DataMember="QuoteFilter" >
<Template>
<px:PXLayoutRule runat="server" StartRow="True" StartColumn="True" ControlSize="SM" LabelsWidth="SM"/>
<px:PXSelector runat="server" ID="txtSuretyCompanyChosenBond" DataField="SuretyCompanyChosen" DisplayMode="Text" />
<px:PXDropDown runat="server" ID="ddYear" DataField="YearChosen" CommitChanges="True"/>
<px:PXDateTimeEdit runat="server" ID="dtEffPopup" DataField="EffectiveDate" CommitChanges="True"/>
</Template>
</px:PXFormView>
<px:PXPanel ID="pnlBtnQuoteFilter" runat="server" SkinID="Buttons">
<px:PXButton ID="btnQuoteFilterOK" runat="server" Text="OK" CommandSourceID="ds" DialogResult="OK" />
<px:PXButton ID="btnQuoteFilterCancel" runat="server" Text="Cancel" CommandSourceID="ds" DialogResult="Cancel" />
</px:PXPanel>
</px:PXSmartPanel>
</asp:Content >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment