Hey,
I was having an issue where if the dropDownList is open when you start typing in the input box, the suggestion list appears on top of the dropDownList, rather than replacing it.
Was able to reproduce in the demo application - attaching gif showing the behaviour.
Any suggestions on how to avoid this, other than going with other autocomplete mode?
Autocomplete mode is Suggest,
Telerik version is 2020.3.915.40
Hello all..
how to populate the summary sum in summary row to textbox ... when summaryrow visible is false ..
I have wrote this code ...
Public Sub New()
' This call is required by the designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
Dim summaryItem As New GridViewSummaryItem()
summaryItem.Name = "Nilai"
summaryItem.Aggregate = GridAggregateFunction.Sum
Dim summaryRowItem As New GridViewSummaryRowItem()
summaryRowItem.Add(summaryItem)
Me.GridDetail.SummaryRowsBottom.Add(summaryRowItem)
Me.GridDetail.MasterView.SummaryRows(0).IsVisible = False
End Sub
Private Sub GridDetail_SummaryEvaluate(sender As Object, e As GroupSummaryEvaluationEventArgs) Handles GridDetail.GroupSummaryEvaluate
TxtTotal.Value = e.Value
End Sub
this code is working fine ... to deliver the value from summary row to textbox if visible of summaryrow = true
how make the value from summary row to textbox when visible is false
I downloaded the current for your App and was trying to install. My system has Visual Studio 2015, 2017 and 2019 installed but when i check for the Visual Studio integration i do not get the option for 2019 as it is grey out. What causes this ? Is there a fix for it or how can i manually install the 2019 extensions ?
I enclosed 2 screenshots which show the Visual Studio Version as well as the Install option for your Telerik UI for WinForms
I am applying a consistent theme to my app by doing this ThemeResolutionService.ApplicationThemeName = "Office2013Light";
But, since that happens at run time, my designer still shows a different theme. How can I change the default theme that's being used?

Hello,
I'm using a PivotGrid with nodes from a database. I want to hide some of the fields of the fieldControl and I use this code:
Private Sub RadPivotFieldList1_NodeFormatting(ByVal sender As Object, ByVal e As TreeNodeFormattingEventArgs)
If e.Node.Text = "IdAnalisis" Then
e.Node.Visible = False
End If
The problem is that when it shows the dialog, the IdAnalisis node is still there and when I press the FieldsControl window, then it disappears. I tried to use refresh and invalidate in different parts of the code, but always the same problem. Any solution?
Thank you,
Eduard

Hello team,
How to set select/focus borderline in the RadDropDownList?
for example,
if I press the tab button to focus on the RadButton that I can know the button is focused, but there is no focus borderline in the RadDropDownList. I have attached the image.
Kindly, check and share the fix details for set the focus borderline in RadDropDownList.
Notes: I'm using C# code.
Thanks.


Hello.
I design a function form as record finder in my Application. I want to use it instead of dropdownlist in a MultiColumnComboBox Column in a radgridview. Is it possible to do that?
Thanks

