[CLOSED] RadioGroup issue with BoxLabel being set on the back end

  1. #1

    [CLOSED] RadioGroup issue with BoxLabel being set on the back end

    I have the following RadioGroup on the front end:

    <ext:RadioGroup ID="rgDeadline" runat="server" FieldLabel="Deadline" ColumnsNumber="1" AutomaticGrouping="false"  MarginSpec="10 0 0 0">                            
                                <Items>
                                    <ext:Radio ID="rdSubsequent" runat="server" Name="rating" Checked="true" Handler="#{dcCustomDate}.enable();" /> 
                                    <ext:Radio ID="rdCustom" runat="server" Name="rating" BoxLabel="Custom Date" Handler="#{dcCustomDate}.disable();" />
                                    <ext:DateField ID="dcCustomDate" AllowBlank="false" runat="server" Disabled="true" OnDirectChange="dcCustomDate_Changed" />
                                </Items>
                            </ext:RadioGroup>
    And on the back end I set the BoxLabel for rdSubsequent as follows:
    var tBll = new TermBLL();
    Term term = tBll.getSecondSubsequentTerm();
    rdSubsequent.BoxLabel = " End of Second Subsequent Term (" + term.Description + " Quarter)";
    This works fine in 2.5.3 but after upgrading to 3.2 the line above where I set the BoxLabel causes the whole window not to show. I couldn't find anything in the breaking changes or changelog about changes to the RadioGroup or Radio features but was there a change to how you set the BoxLabel?
    Last edited by Daniil; Aug 11, 2015 at 3:37 PM. Reason: [CLOSED]
  2. #2
    I changed the BoxLabel to FieldLabel and the same functionality works. The only difference is that the label is to the left of the radio button instead of to the right. This works in the instance I am using it but may not for others.
  3. #3
    Hello @Zfreeman!

    If you change your rdSubsequent definition adding BoxLabel="&nbsp;", does it fix the issue?

    I couldn't reproduce your issue of 'no window showing' as I couldn't see how a window is supposed to be shown by your snippets and instructions.

    As far as I could come up with, the problem without the suggestion above is that the label appears below the radio button. Like this:
    before:
    Click image for larger version. 

Name:	59845-before.png 
Views:	53 
Size:	4.4 KB 
ID:	24111

    after:
    Click image for larger version. 

Name:	59845-after-noFix.png 
Views:	71 
Size:	8.0 KB 
ID:	24113

    And the 'after' with the solution above was this:
    Click image for larger version. 

Name:	59845-after-Fix.png 
Views:	72 
Size:	7.7 KB 
ID:	24112
    Fabrício Murta
    Developer & Support Expert

Similar Threads

  1. BoxLabel in RadioGroup
    By yash.kapoor in forum 2.x Help
    Replies: 4
    Last Post: Nov 22, 2012, 11:29 AM
  2. Align boxlabel next ti radio in radiogroup
    By bjones in forum 1.x Help
    Replies: 0
    Last Post: Feb 07, 2012, 10:42 AM
  3. Radiogroup radio boxlabel text not showing
    By Richardt in forum 1.x Help
    Replies: 4
    Last Post: Jan 19, 2010, 9:46 AM
  4. Replies: 0
    Last Post: Oct 28, 2009, 6:05 AM
  5. [CLOSED] [1.0] RadioGroup wrap BoxLabel text
    By danielg in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Oct 23, 2009, 12:24 PM

Tags for this Thread

Posting Permissions