Hello!I have troubles with a ultraDropDown in a UltraGridCell:(UltraGridCell: Style=DropDown, ValueList=ultraDropDown1)Please see PDF File:
Thanks for Help!myGilli
How are you checking the selected row? In what event?
And more importantly, why are you checking the selected row? The selected row in the dropdown is not a reliable value, anyway, since the UltraDropDown control is servicing the entire column. If you want to determine the selected value in a cell of the grid, you should use the Value property of the grid cell.
Hello Mike!I want to find the selected ultraDropDown-Row in my ultraGridCell:...this.ultraGrid1.Rows.Band.Columns["a"].ValueList = this.ultraDropDown1;...void ultraGrid1_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgse) {int iSelectedRow = this.ultraGrid1.Rows[0].Cells["a"].ValueListResolved.SelectedItemIndex; this.ultraLabel1.Text = this.ultraDropDown1.Rows[iSelectedRow].Cells["b"].Text;}I hope you know what i meen & thanks for answers!