I am a coworker with Seth… I downloaded the latest version (v.2013.3.1127.40 Trial) and still getting the same result. Also the code example you sent Seth only partially handles the command button firing. It does not address the fact that the keypress is not picked up or used in the grid.
Thanks
Jose.
To move things along i've included code for a simple form.
Imports Telerik.WinControls.UI
Public Class Form1
Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
RadGridView1.Columns.Add("UOM")
Dim dt As New DataTable
dt.Columns.Add("UOM")
dt.Columns.Add("PKGTYPEDS")
dt.Rows.Add("1", "ABROWN1")
dt.Rows.Add("2", "ABROWN3")
dt.Rows.Add("3", "ABROWN4")
dt.Rows.Add("4", "ABROWN2")
dt.Rows.Add("5", "BROWN1")
dt.Rows.Add("6", "BROWN2")
dt.Rows.Add("7", "BROWN3")
dt.Rows.Add("8", "BROWN4")
dt.Rows.Add("9", "UBROWN1")
dt.Rows.Add("10", "UBROWN2")
dt.Rows.Add("11", "UBROWN3")
dt.Rows.Add("12", "UBROWN4")
Dim colPKGUOM As GridViewComboBoxColumn = New GridViewComboBoxColumn()
colPKGUOM.DataSource = dt.Copy
colPKGUOM.DisplayMember = "PKGTYPEDS"
colPKGUOM.ValueMember = "UOM"
colPKGUOM.FieldName = "PKGTYPEDS"
colPKGUOM.HeaderText = "Pkg Type"
colPKGUOM.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList
colPKGUOM.AutoCompleteMode = AutoCompleteMode.SuggestAppend
RadGridView1.Columns.Insert(1, colPKGUOM)
RadGridView1.Columns(0).Width = 300
RadGridView1.Columns(1).Width = 300
RadGridView1.AllowAddNewRow = True
End Sub
Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click
MsgBox("Button2 Clicked")
End Sub
Private Sub Button1_Click(sender As Object, e As System.EventArgs) Handles Button1.Click
MsgBox("Button1 Clicked")
End Sub
End Class
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form1
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.Button1 = New System.Windows.Forms.Button()
Me.Button2 = New System.Windows.Forms.Button()
Me.RadGridView1 = New Telerik.WinControls.UI.RadGridView()
CType(Me.RadGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(609, 67)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(75, 23)
Me.Button1.TabIndex = 0
Me.Button1.Text = "&Button1"
Me.Button1.UseVisualStyleBackColor = True
'
'Button2
'
Me.Button2.Location = New System.Drawing.Point(609, 26)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(75, 23)
Me.Button2.TabIndex = 1
Me.Button2.Text = "B&utton2"
Me.Button2.UseVisualStyleBackColor = True
'
'RadGridView1
'
Me.RadGridView1.Location = New System.Drawing.Point(51, 154)
Me.RadGridView1.Name = "RadGridView1"
Me.RadGridView1.Size = New System.Drawing.Size(632, 127)
Me.RadGridView1.TabIndex = 2
Me.RadGridView1.Text = "RadGridView1"
'
'Form1
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(718, 502)
Me.Controls.Add(Me.RadGridView1)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1)
Me.Name = "Form1"
Me.Text = "Form1"
CType(Me.RadGridView1, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
End Sub
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents Button2 As System.Windows.Forms.Button
Friend WithEvents RadGridView1 As Telerik.WinControls.UI.RadGridView
End Class