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

  • Home
  • SEARCH
  • 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 8326667
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T00:50:16+00:00 2026-06-09T00:50:16+00:00

All I’m really trying to do is populate three different comboboxes with the same

  • 0

All I’m really trying to do is populate three different comboboxes with the same item. When this code executes below only one combobox is getting the values. Any help is welcomed. Thanks!

for (int i = 0; i < 100; i++)
        {
            RadComboBoxItem li = new RadComboBoxItem();
            li.Text = i.ToString();
            li.Value = i.ToString();
            InputPairThousandValueComboBox.Items.Add(li);
            InputUsertThousdandValueComboBox.Items.Add(li);
            InputCurrentlyListedThousdandComboBox.Items.Add(li);

        }
  • 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-06-09T00:50:19+00:00Added an answer on June 9, 2026 at 12:50 am

    I couldn’t find anything in the Telerik docs that says this explicitly, but it appears a single instance of a RadComboBoxItem can only be contained in a single RadComboBox; you can’t share a RadComboBoxItem between controls.

    The docs do hint to this: the RadComboBoxItem has an ‘owner’ property that is a reference to the RadComboBox that contains the item (implying that there can be only 1 owner)

    Under the covers, the second & third Add(...) calls most likely first remove the item from the combo box its already in.

    So, you’ll have to create a separate RadComboBoxItem for each RadComboBox. Here’s one way you could do it using the RadComboBoxItem constructor that takes the text and value as arguments.

    for (int i = 0; i < 100; i++)
    {
       var val = i.ToString();
       InputPairThousandValueComboBox.Items.Add(new RadComboBoxItem(val, val));
       InputUsertThousdandValueComboBox.Items.Add(new RadComboBoxItem(val, val));
       InputCurrentlyListedThousdandComboBox.Items.Add(new RadComboBoxItem(val, val));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

All, See the code below: function menu() { this.menuitem=[]; this.submenu=[]; this.menuitem[0] = $('div#sivname1'); this.menuitem[1]
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
All, I am trying to create a table to receive user inputs (UGC). This
All the code/commands below are part of a PHP script that processes images from
All, Say I have the following divs: <div id=rotate_container> <div class=reviews id=item1>This is item
all! What is wrong with this code? I cannot understand what I am doing
All I am looking for is when the below code is run and the
All, Been trying to fix this issue for some time without any progress... Any
all. We're trying to get some intersect collisions working, but the problem experience is
All, Apologies in advance - this question might be too open-ended for SO. Anyway...

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.