RadioGroup as Editor in GridPanel - Possible?

  1. #1

    RadioGroup as Editor in GridPanel - Possible?

    I am trying to put in a radiogroup as an editor possible?



    <ext:Column DataIndex="roundedBy" Align="Right" Header="Round All Prices To Nearest"
    
    
    Sortable="false" MenuDisabled="true">
    
    
    <Editor>
    
    
    <ext:RadioGroup runat="server" ID="rg1">
    
    
    <Items>
    
    
    <ext:Radio ID="Radio12" runat="server" />
    
    
    <ext:Radio ID="Radio13" runat="server" />
    
    
    <ext:Radio ID="Radio14" runat="server" />
    
    
    <ext:Radio ID="Radio15" runat="server" />
    
    
    <ext:Radio ID="Radio16" runat="server" />
    
    
    </Items>
    
    
    </ext:RadioGroup>
    
    
    </Editor>
    
    
    </ext:Column>
    Last edited by Daniil; Jan 12, 2012 at 11:59 AM. Reason: Please use [CODE] tags
  2. #2

    RE: RadioGroup as Editor in GridPanel - Possible?

    not presently possible, at least that's what we think, for a column to have more than one radio button. but you can achieve a similar effect by splitting the buttons into several columns like this

     <ext:NewCheckColumn InputValue="0" DataIndex="is_highrisk" Header="Low Risk" Editable="true" Width="70" Fixed="true"></ext:NewCheckColumn>
    <ext:NewCheckColumn InputValue="1" DataIndex="is_highrisk" Header="High Risk" Editable="true" Width="70" Fixed="true"></ext:NewCheckColumn>
    Last edited by Daniil; Jan 12, 2012 at 12:00 PM. Reason: Please use [CODE] tags
  3. #3
    The thread is related to:
    http://forums.ext.net/showthread.php?12168

Similar Threads

  1. [CLOSED] Style FieldLabel in RadioGroup with GridPanel
    By osef in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Aug 20, 2012, 4:49 PM
  2. GridPanel with editor
    By Vaishali in forum 1.x Help
    Replies: 0
    Last Post: Mar 15, 2012, 8:46 AM
  3. [CLOSED] RadioGroup in Gridpanel
    By softmachine2011 in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Jul 18, 2011, 12:11 PM
  4. [CLOSED] RadioGroup inside Gridpanel using MVC 2
    By webppl in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Jan 11, 2011, 11:38 PM
  5. GridPanel - Always Show Editor
    By Tbaseflug in forum 1.x Help
    Replies: 3
    Last Post: Jun 07, 2009, 8:02 PM

Posting Permissions