or
Private Sub radGridView1_DefaultValuesNeeded(ByVal sender As Object, ByVal e As GridViewRowEventArgs)
'here i get the parent row
Dim row As GridViewRowInfo = TryCast(e.Row.ParentRow, GridViewRowInfo)
If row IsNot Nothing AndAlso row.ParentRow IsNot Nothing Then
e.Row.Cells("ID").Value = row.ViewInfo.ParentRow.Cells("Ms_ProgRow").Value
End If
End Sub
e.Row.Cells("ID").Value
= e.Row.ParentRow.Cells("Ms_ProgRow").Valuerddl_Consignor_Iso.Popup.MinimumSize = New Size(500, 200) orrddl_Consignor_Iso.DropDownListElement.DropDownMinSize = New Size(500, 200) orAll worked fine, when using the arrow button with the mouse. The popup then is in the expected width. But when entering the box using the keyboard and typing some letters, the box pops up only in the same width as the DropDownList control. I'm getting mad on this. Which value do I have to set to get an acceptable result? Cheers Robertorddl_Consignor_Iso.DropDownMinSize = New Size(500, 200)and some other coding.
Hello sir,
Am using vb.net.
I am using radmulti column combobox with FILTER and Autocompletemode as suggest.
I have attached 2 files as Odd row & even row selection images.
Odd rows selection in drop down highlights correct with arrow mark in first column of each rows.
But if i select 2,4,6th.... rows in drop down, first half of the text hides as like in second image "even rows selection"
Also If i try to filter then the drop down height and width changes while opening the drop down.
How to rectify it sir?
I have to use AutoSizeDropDownToBestFit = True, because combobox holds values of size 200.
Thank you
Jayanthi
Dim
col
As
New
GridViewTextBoxColumn(
"Code"
,
"Code"
)
col.DataTypeConverter =
New
CodePluginConverter()
gvHistorique.Columns.Insert(0, col)
Dim
col
As
New
GridViewImageColumn(
"Code"
,
"Code"
)
col.DataTypeConverter =
New
CodePluginConverter()
gvHistorique.Columns.Insert(0, col)