Completed
Last Updated: 08 Oct 2019 16:13 by ADMIN
Release R3 2019 SP1
Dimitar
Created on: 09 Sep 2019 11:18
Category: GridView
Type: Bug Report
0
RadGridView: The editor value is lost with specific format
The DateTime Value is lost when using a custom format "dd.MM.yyyy" in RadgridView and custom provider is used. 

Workaround: 
Set the MaxDate in the custom provider:
Public Class MyMaskDateTimeProvider
  Inherits MaskDateTimeProvider

  Public Sub New(mask As String, culture As CultureInfo, owner As RadMaskedEditBoxElement)
        MyBase.New(mask, culture, owner)
        Me.MaxDate = DateTime.MaxValue
    End Sub

   
End Class
0 comments