Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
580
UltraDropDown ValueListResolved -1
posted

Hello!

I have troubles with a ultraDropDown in a UltraGridCell:
(UltraGridCell: Style=DropDown, ValueList=ultraDropDown1)

Please see PDF File:

Thanks for Help!
myGilli

Parents Reply
  • 580
    Offline posted in reply to Mike Saltzman

    Hi Mike!



    Here my First Row:


    Here my Second Row:

    Now i want to get the Text of the "Model" Column:
    "Answer:  SCENIC N / SCE"
    "Answer:  ESPRIMO E"

    private void ultraButton1_Click(object sender, EventArgs e)
    {
    foreach (UltraGridRow row in ultraGrid1.Rows)
    {
    int iDropDownIndex = row.Cells["Column 0"].ValueListResolved.SelectedItemIndex;
    MessageBox.Show("Answer: " + this.ultraDropDown1.Rows[iDropDownIndex].Cells["Model"].Text);
    }
    }

    What is the best resolution for this?

    Thanks 4 your answer & patience

Children