EpiCombo in a Grid

Anyone have any input?

Is it bad to set the valuelist in an epigrid dropdown equal to an Epicombo?

--- In vantage@yahoogroups.com, "chan213419" <chan213419@...> wrote:
>
> I have an Epicombo called ComboPriorityDtl on the Sales Order Entry form. The customer wants this same dropdown to appear on the EpiUltraGrid for the form as well.
>
> My Combos work just fine in the grid, but the EpiCombo NOT in the grid (ComboPriorityDtl) goes blank whenever a user changes the value in the EpiUltraGrid.
>
> Here is my code, am I missing something simple? Should I not have the ValueList = ComboPriorityDtl?
>
>
>
> Private Sub SalesOrderForm_Load(ByVal sender As Object, ByVal args As EventArgs)
> ComboPriorityDtl.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList
>
> DIM grdSummaryOrderLines AS EpiUltragrid = Ctype(csm.GetNativeControlReference("bec51417-b286-4d61-a471-3912bc098905"),EpiUltraGrid)
>
> grdSummaryOrderLines.DisplayLayout.Bands(0).Columns("ShortChar02").Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList
> grdSummaryOrderLines.DisplayLayout.Bands(0).Columns("ShortChar02").ValueList = ComboPriorityDtl
>
> End Sub
>
>
> Thank you all,
> Chan
>
I have an Epicombo called ComboPriorityDtl on the Sales Order Entry form. The customer wants this same dropdown to appear on the EpiUltraGrid for the form as well.

My Combos work just fine in the grid, but the EpiCombo NOT in the grid (ComboPriorityDtl) goes blank whenever a user changes the value in the EpiUltraGrid.

Here is my code, am I missing something simple? Should I not have the ValueList = ComboPriorityDtl?



Private Sub SalesOrderForm_Load(ByVal sender As Object, ByVal args As EventArgs)
ComboPriorityDtl.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList

DIM grdSummaryOrderLines AS EpiUltragrid = Ctype(csm.GetNativeControlReference("bec51417-b286-4d61-a471-3912bc098905"),EpiUltraGrid)

grdSummaryOrderLines.DisplayLayout.Bands(0).Columns("ShortChar02").Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList
grdSummaryOrderLines.DisplayLayout.Bands(0).Columns("ShortChar02").ValueList = ComboPriorityDtl

End Sub


Thank you all,
Chan