Hello Dinko,
Thank you, - it works!
Best Regards,
Yurii Borachok
Hello Yurii,
Thank you for reporting this. We could extend the size of the editors in the CellEditorInitialized event:
Private Sub GridEditorInitializedEventHandler(sender As Object, e As GridViewCellEventArgs)
Dim dtEditor As RadDateTimeEditor = TryCast(e.ActiveEditor, RadDateTimeEditor)
If dtEditor IsNot Nothing Then
Dim element As RadDateTimeEditorElement = TryCast(dtEditor.EditorElement, RadDateTimeEditorElement)
element.CalendarSize = New Size(300, 300)
End If
Dim spanEditor As GridTimeSpanPickerEditor = TryCast(e.ActiveEditor, GridTimeSpanPickerEditor)
If spanEditor IsNot Nothing Then
Dim element As RadTimeSpanPickerElement = TryCast(spanEditor.EditorElement, RadTimeSpanPickerElement)
element.PopupMinSize = New Size(300, 300)
End If
End Sub
Regards,
Dinko | Tech Support Engineer
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.