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.