The filter (yesterday, today, specific date) for DateTimeColumns only work for data without time portions. If the data contains date with time values the filters are useless.
I've changed the behavior for the yesterday/today filter with the OnFilterPopupRequired event (https://docs.telerik.com/devtools/winforms/gridview/filtering/excel-like-filtering) Is there any simple way to override the behavior for the calendar element? (select a specific date the filter has to be for the entire day 00:00 to 23:59, so it needs be a composite filter >= and <)
Anyway: the filters should work for date and datetime data by default


Hello,
I have an application on 2 screens. I want to dock controls on the 2 screens and move them from one screen to the other screen.
So, I have to drag drop controls from the first raddock to the second and back but I didn't found any solution to do it.
Is there a solution ?

Hello,
I had an project from Visual Studio 2013 and When i click with right button mouse, it appear the ContextMenuStrip, so now, with VS 2017, I need to modify the project (Another PC with VS 2017 having Telerik extensions ) but now it doesn't appear the ContextMenuStrip on RadGridView component, but on RadGridView property I have ContextMenuStrip set to the right component, but it doesn't appear. Why?
Can anyone help me?
Thank you


I am having issues laying out a basic layout using RadDock. I am using the RadDock Advanced Layout Designer to layout the Tools window.
See the attachment, when the user resizes the form, I would like to have the Tool Window fill to the right, how can I dock the Tool Window to dock appropriately? What I don't understand is that if I use the Document Window Option, it works but not for the tool option.
Hi,
I have a groupped gridview with summary row that calculate subtotal of each groups
and one grand Total at end of Grid (after set : gridview1.MasterTemplate.ShowTotals = true)
But In my senario I need one summery row for each groups and three grand Total at end.
Is it possible?
Thanks



Private Sub AddAutoCompleteItems() Me.RadTextBoxControl1.AutoCompleteMode = AutoCompleteMode.Suggest Dim resultgoogle As RadListDataItemCollection = RadTextBoxControl1.AutoCompleteItems Dim value As String = RadTextBoxControl1.Text Dim url As String = "https://maps.googleapis.com/maps/api/place/autocomplete/json?input=" & value & "&types=establishment&language=fr&key=YOURAPIKEY" Dim request As WebRequest = WebRequest.Create(url) Dim response As HttpWebResponse = request.GetResponse() Dim responseStream As Stream = response.GetResponseStream() Dim reader As New StreamReader(responseStream) Dim jsonData As String = reader.ReadToEnd() Dim jResults As JObject = JObject.Parse(jsonData) Dim data As List(Of JToken) = jResults.Children().ToList reader.Close() For Each item As JProperty In data item.CreateReader() Select Case item.Name Case "predictions" For Each msg As JObject In item.Values If resultgoogle.Contains(msg("description")) Then 'nothing Else resultgoogle.Add(New RadListDataItem(msg("description"))) End If Next End Select Next If RadTextBoxControl1.Text = "" Then resultgoogle.Clear() End If End Sub Private Sub RadTextBoxControl1_TextChanged(sender As Object, e As EventArgs) Handles RadTextBoxControl1.TextChanged AddAutoCompleteItems() End Sub
If you have a more efficient solution to limit requests on the google API, do not hesitate to share.
JC
