This is a migrated thread and some comments may be shown as answers.

FormStyle Width Property ignored?

1 Answer 75 Views
Grid
This is a migrated thread and some comments may be shown as answers.
david
Top achievements
Rank 1
david asked on 22 Sep 2008, 06:15 PM
Stange, I cant seem to change the editform width :$0$0$0$0$0$0        <EditFormSettings EditFormType="Template"  FormStyle-Width="600px">$0$0             <EditColumn UniqueName="EditCommandColumn1">$0$0             </EditColumn>$0$0             <FormStyle Height="400px" Width="600px" />$0$0             <FormTemplate    >$0$0$0$0$0$0regardless of the width setting my popup form is always the same width, am I looking at the wrong property?$0$0$0$0$0thanks$0$0$0$0$0

1 Answer, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 23 Sep 2008, 04:54 AM
Hi David,

Try setting the width and height of the Popup edit form as shown below.

ASPX:
<EditFormSettings EditFormType="Template"   > 
    <PopUpSettings  Height="400" Width="600" /> 
       <FormTemplate> 
         <asp:HyperLink ID="HyperLink1" runat="server">HyperLink</asp:HyperLink> 
          <asp:Button ID="Button1" runat="server" Text="Button" /> 
         <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> 
      </FormTemplate> 
   </EditFormSettings> 

You can also refer the following help article to get more details about Popup edit form.
Popup Edit Form

Thanks
Shinu.
Tags
Grid
Asked by
david
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or