Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1076251
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T21:23:09+00:00 2026-05-16T21:23:09+00:00

I have created a class that inherits from RadioButtonList in order to add a

  • 0

I have created a class that inherits from RadioButtonList in order to add a GroupName attribute to each list item. (why it was not there already I have no idea).

This works as expected when it is rendered, but does not persist the selected items on postback.

public class GroupedRadioButtonList : RadioButtonList
{
    [Bindable(true), Description("GroupName for all radio buttons in list.")]
    public string GroupName
    {
        get;
        set;
    }

    protected override void RenderItem(ListItemType itemType, int repeatIndex, RepeatInfo repeatInfo, System.Web.UI.HtmlTextWriter writer)
    {
        RadioButton radioButton = new RadioButton();
        radioButton.Page = this.Page;
        radioButton.GroupName = this.GroupName;
        radioButton.ID = this.ClientID + "_" + repeatIndex.ToString();
        radioButton.Text = this.Items[repeatIndex].Text;
        radioButton.Attributes["value"] = this.Items[repeatIndex].Value;
        radioButton.Checked = this.Items[repeatIndex].Selected;
        radioButton.TextAlign = this.TextAlign;
        radioButton.AutoPostBack = this.AutoPostBack;
        radioButton.TabIndex = this.TabIndex;
        radioButton.Enabled = this.Enabled;            
        radioButton.RenderControl(writer);

    }
}

Does anyone know what I am missing?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T21:23:11+00:00Added an answer on May 16, 2026 at 9:23 pm

    You need to implement the IPostBackDataHandler interface and handle a couple of methods. I’m giving you something I used in a similar control, only I extended the individual RadioButton control and not the list. I added custom Value and GroupName attributes to the button then initialized the value upon postback.

    #region IPostBackDataHandler Members
        void IPostBackDataHandler.RaisePostDataChangedEvent()
        {
            OnCheckedChanged(EventArgs.Empty);
        }
    
        bool IPostBackDataHandler.LoadPostData(string postDataKey, NameValueCollection postCollection)
        {
            bool result = false;
            //check if a radio button in this button's group was selected
            string value = postCollection[GroupName];
            if ((value != null) && (value == Value)) //was the current radio selected?
            {
                if (!Checked) //select it if not already so
                {
                    Checked = true;
                    result = true;
                }
            }
            else //nothing or other radio in the group was selected
            {
                if (Checked) //initialize the correct select state
                {
                    Checked = false;
                }
            }
            return result;
        }
    #endregion
    

    Apologies for a not very optimized code 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a BasePage class that inherits from System.Web.Ui.Page. In that base class
I have created a class that inherits from Steema.TeeChart.TChart I am trying to disable
I have created a BasicMembershipProvider class that inherits from MembershipProvider, when implemented, the ValidateUser
I have a created a class that inherits from the Manager class that will
Example: I have an class that inherits from UIImageView. An object creates an instance
I have written a custom SessionStoreProvider class that inherits from the SessionStateStoreProviderBase. I have
I'm developing an iPhone application. I have a class that inherits from UIView .
I've programmatically created a class, Map, that inherits from the TableLayoutPanel class. The Map
I have a class that inherits from UIView, and this class has some controls
I have created a class that inherits the QListWidget and is meant to be

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.