Hi Deivaselvan ;
I followed the instruction based on the link , I created the TimeSpan column successfully .
I have issues when I select the time by clicking on the timepicker , the selected time not saved on the cell after I hit tab or select another cell to enter data ,the time that I selected is empty .
- Is there a property for that as exp: AllowInlineEditing="True" for GridDateTimeColumn when I select the date, the date is saved on the cell after I click tab or select another cell for editing .
- Is there a property for getting 24 h not only 12 h timepicker.
- In the end of the instruction : Adding the custom renderer to SfDataGrid.CellRenderers collection
I think there is an error in :
dataGrid.CellRenderers.Add("TimePicker", new DatePickerRenderer()); ==> should be dataGrid.CellRenderers.Add("TimePicker", new TimePickerRenderer());
because we are creating a TimePicker Column.
Thanks for your help .