Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Peter
Created on: 11 Jun 2012 06:58
Category: GridView
Type: Bug Report
0
TAB navigation does not work properly with Grid TimePickerCell
TAB navigation does not work properly with Grid TimePickerCell. The timepicker cell gets the focus only for a moment, and the grid immediately sets the focus to the next cell.

 public Form1()
 {
            radGridView1.Columns.Add(new GridViewDateTimeColumn());
            radGridView1.EditorRequired += new EditorRequiredEventHandler(radGridView1_EditorRequired);
    
 }

 void radGridView1_EditorRequired(object sender, EditorRequiredEventArgs e)
 {
      e.Editor = new GridTimePickerEditor();
  }
0 comments