hostsoftware
New Member
I have Created a GridView, and i want to customize the edit form. I need to hide/delete or arrange the items on the edit from. For example to move a text box from the the top left side to the bottom right side, or delete from the edit form.It is possible?\[code\]<EditForm> <div style="padding: 4px 4px 3px 4px"> <dx:ASPxPageControl runat="server" ID="pageControl1" Width="100%" ActiveTabIndex="0"> <TabPages> <dx:TabPage Text="Edit" Visible="true"> <ContentCollection> <dx:ContentControl ID="ContentControl1" runat="server"> <dx:ASPxGridViewTemplateReplacement ID="Edit" ViewStateMode="Enabled" ReplacementType="EditFormEditors" runat="server"> </dx:ASPxGridViewTemplateReplacement> <div style="text-align: right; padding: 2px"> <dx:ASPxGridViewTemplateReplacement ID="UpdateButton" ReplacementType="EditFormUpdateButton" runat="server"> </dx:ASPxGridViewTemplateReplacement> <dx:ASPxGridViewTemplateReplacement ID="CancelButton" ReplacementType="EditFormCancelButton" runat="server"> </dx:ASPxGridViewTemplateReplacement> </div> </dx:ContentControl> </ContentCollection> </dx:TabPage> <dx:TabPage Text="Edit2" Visible="true"> <ContentCollection> <dx:ContentControl runat="server" SupportsDisabledAttribute="True"> </dx:ContentControl> </ContentCollection> </dx:TabPage> </TabPages> </dx:ASPxPageControl> </EditForm>\[/code\]Thanks in advance.