Hello,
I have a column with two textboxes with BREAK. I need those breaks. Here is my HTML. Depending on the codition, I may or may not display the second textbox. If I am not displaying second textbox, how can I make the first textbox in the middle of the row.
I have a column with two textboxes with BREAK. I need those breaks. Here is my HTML. Depending on the codition, I may or may not display the second textbox. If I am not displaying second textbox, how can I make the first textbox in the middle of the row.
<telerik:GridTemplateColumn HeaderText="Exception Price" UniqueName="ExceptionPrice" ItemStyle-Width="8%"> <ItemTemplate> <telerik:RadNumericTextBox ID="txtNewPrice" runat="server" MaxLength="10" AutoCompleteType="None" CssClass="txtException" MinValue="0" Width="50px" Type="Number" ShowSpinButtons="false" AllowOutOfRangeAutoCorrect="false" InvalidStyle-Font-Bold="true"> <NumberFormat AllowRounding="false" DecimalDigits="2" KeepNotRoundedValue="true" GroupSizes="3"/> <ClientEvents OnValueChanging="ValueChanges" OnError="HandleError"/> </telerik:RadNumericTextBox> <br /><br /> <div style="vertical-align:bottom" > <telerik:RadNumericTextBox ID="TxtNewPSPrice" runat="server" MaxLength="10" AutoCompleteType="None" MinValue="0" Visible="false" Width="50px" Type="Number" ShowSpinButtons="false" AllowOutOfRangeAutoCorrect="false" InvalidStyle-Font-Bold="true" CssClass="txtException"> <NumberFormat AllowRounding="false" DecimalDigits="2" KeepNotRoundedValue="true" GroupSizes="3"/> <ClientEvents OnValueChanging="ReinstatementChange" OnError="HandleError"/> </telerik:RadNumericTextBox> </div> </ItemTemplate> </telerik:GridTemplateColumn>