I have a UltragridColumn and chosen the column editor to Webcombo, I want to bind a valuelist to a webcombo, but my value list should have two columns but I need to show only one column in the valuelit and I need to hide the other column. How to hide the column in the valuelist bound to a webcombo
Hello,
After binding combo you can get reference to it and hide the column that you want
for example :
WebCombo1.Columns[0].Hidden = true;