Infragistics.WebUI.WebCombo.WebCombo
DisplayValue :首先显示的值
SelBackColor :选中时 下拉框的底色
SelForeColor :选中时 下拉框的前景色
Editable :当True时 , 即可以修改输入框的值,内容则动态筛选出。
默认false;
SelForeColor :选中时 下拉框的前景色
Editable :当True时 , 即可以修改输入框的值,内容则动态筛选出。
默认false;
SelectedIndex
---如何取选中的值?
Infragistics.WebUI.UltraWebGrid.UltraGridCell cell=this.WebCombo1.SelectedCell ;
Infragistics.WebUI.UltraWebGrid.UltraGridRow row=this.WebCombo1.SelectedRow ;
lblinfo.Text = "<br>Text :";
lblinfo .Text+=cell.Text ;
lblinfo.Text +="<br>Value:";
lblinfo.Text+= row.Cells[0].Value ; Cells[0] : 0 是DataValueField 列所在的索引值。
Infragistics.WebUI.UltraWebGrid.UltraGridRow row=this.WebCombo1.SelectedRow ;
lblinfo.Text = "<br>Text :";
lblinfo .Text+=cell.Text ;
lblinfo.Text +="<br>Value:";
lblinfo.Text+= row.Cells[0].Value ; Cells[0] : 0 是DataValueField 列所在的索引值。
SelectedCell : 类型为Infragistics.WebUI.UltraWebGrid.UltraGridCell
SelectedRow : 类型为Infragistics.WebUI.UltraWebGrid.UltraGridRow
所以使用以上两个属性,要先把UltraWebGrid 引用进来
DataSource
DataTextField
DataValueField
---同常用的属性。