Hi @all,
in my app I have bound some data from a list of business objects to a WinGrid with no layout specified like this:
Dim liBO As List(Of BO)liBO = BO.GetList()UltraGrid1.SetDataBinding(liBO, "")
Now in the InitializeLayout Event I want to add a WinDropDown, which previously was filled with some other data relating to the business object, to a column of the Grid like this:
e.Layout.Bands(0).Columns("Media").ValueList = uddMedia
But after all the WinDropDown doesn't appear in the column.What am I missing here?Is there anything needed to be done to get this scenario to work?
Any help is highly appreciated.
Best RegardsHowieD
Hello HowieD,
This should work for sure. Please take a look at my sample, you need only the line of code you mentioned in order to get this done. I will be waiting for your feedback.
Hi Boris,
where can I find your sample?
RegardsHowieD
Please excuse me for the inconvenience, please take a look at the following forum thread:
http://community.infragistics.com/forums/p/70838/358575.aspx#358575.
My sample is now attached to this post as it is to my previous, please take a look.
Hello Boris,
I'm terribly sorry. But I found the error.In an earlier stage I set the updatable feature of the grid to false so the didn't show the WindDrowDown.
Sorry for bothering with my incapabilities.
Best regardsHowieD