admin Site Admin
Joined: 08 Feb 2012 Posts: 32
|
Posted: Wed Feb 15, 2012 2:35 pm Post subject: How to open editing forms via PxSuperGrid components? |
|
|
To call the AddAdresar.aspx form, assign for the PxSuperGrid component in the Adresar.aspx form, the PxEditFormName property, name of the form, where data for the selected row shall be edited.
Code: | PxEditFormName="AddAdresar.aspx" |
Code: | <Prx:PxSuperGrid ID="grdAdresar" runat="server"
PageSize="4"
PxEditFormName="AddAdresar.aspx"
PxInfoFormName="InfoAdresar.aspx"
PxVisibleButtons="SIDEO">
<SelectedItemStyle BackColor="#ffddff" />
</Prx:PxSuperGrid> |
Pressing the edit button in the PxSuperGrid component opens the AddAdresar.aspx form. |
|