-
Infragistics Grid
Hi,
Has anyone had any experience with the InfragisticsWinGrid? I'm currently working with it and have figured most things out but am having a problem setting default values. When the user enters new information I have specific cells that turn to dropdowns with a list of prefilled data. I would like to set the default value in that dropdown based on the users choice when they begin to enter new information but also give them the ability to change it as needed.
Here is the code I have so far in the UltraGrid1_InitializeLayout
'==> Create UltraGrid Value List for Location
Me.UltraGrid1.DisplayLayout.ValueLists.Add("Location")
With Me.UltraGrid1.DisplayLayout.ValueLists("Location").ValueListItems
.Clear()
.Add("NEW YORK")
.Add("NEW JERSEY")
.Add("GEORGIA")
.Add("TEXAS")
End With
'==> Set "DropDown Properties for Location
.Bands(0).Columns("Location").Style = ColumnStyle.DropDown
.Bands(0).Columns("Location").ValueList = UltraGrid1.DisplayLayout.ValueLists("Location")
Where do I set the defalut value?
-
-
Thanks for responding, but when I followed the link I error. Any other suggestions on where to get some info on the infragisticswingrid? I'm having problems with finding any help.
Thanks,
Corinne
-
The link works for me.... can anyone else confirm that?
-
-
I'm sorry, I should have been more specific. According to the hardware guys here I can't get to any newsgroups because of the firewall. My next choice is to look everything up when I'm at home at night, but I was hoping to find some other places maybe some of you know about on the web. Any help is appreciated.
Thanks,
Corinne