Hi,
I need a functionality of dropdownbox with text editor in it. So I decided to use WebCombo. But I want to display only single column in webcombo & want it to look like normal dropdown. Also want a texteditor in webcombo. I achieved this by using editing property = true;
How to change the layout of ultrawebgrid in webcombo?
Please help me on this.
Bind the WebCombo with whatever column you want and apply the following properties in the InitializeLayout event of WebCombo
WebCombo1.Editable = true;
WebCombo1.DropDownLayout.ColHeadersVisible = ShowMarginInfo.No;
WebCombo1.DropDownLayout.DropdownWidth = 100;
WebCombo1.DropDownLayout.ColWidthDefault = 100;
WebCombo1.Width = 100;
WebCombo1.DropDownLayout.GridLines = UltraGridLines.None;
myGrid.DisplayLayout.ScrollBarView = ScrollBarView.Vertical;
Thank you very much. This is what I was searching for !