I got a grid column that I add a valuelist as a ComboBox. That part work perfect and I can see the values correctly. When I change the table in the combobox and reasign to the ValueList property the list never get changed. But If I create another DropDown and asign that new DropDown to the ValueList property the values show correctly. How I can re asign the same DropDown after changing the table? Here is the code I got so far.
Try
If Me.rdbTransferTypePrimaryToInvestment.Checked Then
Else
End If
Me.FundSeleV.RowFilter = "FundBalance > 0.00"
Me.FundSeleFS.Tables.Clear()
Me.FundultraDropDown.Refresh()
Me.InvestmentTransferGrid.grdiList.DisplayLayout.Bands(0).Columns("FundNumber").ValueList = Nothing
Me.FundultraDropDown2.Refresh()
End Try
End Sub
It's really hard to tell from a code snippet like this.My best guess is that you might have to call DataBind to refresh to UltraDropDown control. But if that doesn't work, I recommend creating a small sample project that demonstrates the problem and Submit an incident to Infragistics Developer Support so they can take a look.