Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
105
How to change the width of <ROWEDITTEMPLATE>
posted

I am using RowEditTemplate to update the selected row in UltraWebGrid (v8.3)

The panel shows but it is too narrow and the text boxes are not fully visible. How can I change the width of this panel?

 

This is the definition of the template:

 

                <ROWEDITTEMPLATE>
                  <P style="FONT-SIZE: 8pt; FONT-FAMILY: Verdana; BACKGROUND-COLOR: lightsteelblue" align="right">
                  Action Type:&nbsp;
                  <INPUT id="igtbl_TextBox_1_0" style="FONT-SIZE: 8pt; WIDTH: 150px; FONT-FAMILY: Verdana" type="text" columnKey="actiontypeid">&nbsp;<BR>
                  Note:&nbsp;
                  <INPUT id="igtbl_TextBox_1_1" style="FONT-SIZE: 8pt; WIDTH: 150px; FONT-FAMILY: Verdana" type="text" columnKey="note">&nbsp;<BR>
                  Date:&nbsp;
                  <INPUT id="igtbl_TextBox_1_2" style="FONT-SIZE: 8pt; WIDTH: 150px; FONT-FAMILY: Verdana" type="text" columnKey="date">&nbsp;<BR>
                  <DIV style="FONT-SIZE: 8pt; FONT-FAMILY: Verdana; BACKGROUND-COLOR: lightsteelblue" align="center" width="100%"><BR>
                    <TABLE id="Table1" cellSpacing="0" cellPadding="0" width="250" border="0">
                      <TR>
                        <TD style="FONT-SIZE: 8pt; FONT-FAMILY: Verdana; TEXT-DECORATION: none" vAlign="top" align="right" width="91">Completed:</TD>
                        <TD>
                          <asp:RadioButtonList id="RadioButtonList1" runat="server" Font-Size="8pt" Font-Names="Verdana" Width="55px" Height="15px" columnKey="completed">
                            <asp:ListItem Value="1">Yes</asp:ListItem>
                            <asp:ListItem Value="0">No</asp:ListItem>
                          </asp:RadioButtonList>
                        </TD>
                      </TR>
                    </TABLE>
                    <BR>
                    <INPUT id="igtbl_reOkBtn" style="FONT-SIZE: 8pt; WIDTH: 50px; FONT-FAMILY: Verdana; BACKGROUND-COLOR: beige" onclick="igtbl_gRowEditButtonClick(event);" type="button" value="OK">&nbsp;
                    <INPUT id="igtbl_reCancelBtn" style="FONT-SIZE: 8pt; WIDTH: 50px; FONT-FAMILY: Verdana; BACKGROUND-COLOR: beige" onclick="globalCancel=true; igtbl_gRowEditButtonClick(event);" type="button" value="Cancel"><BR>
                    <BR>
                  </DIV>
                </ROWEDITTEMPLATE>

 

This is the screen-shot:

 

Parents Reply Children
No Data