I had to revert back to 2026.2.520 because of the issues with 026.2.702
The dropdown is broken and I can't release a new build of apps to customers
And now, I found issues with gridview filtering that has worked forever in all previous builds.
After reverting back to 520 these two line work properly again.
So, I'm just writing to let you know that you should look into the next build after 702 to ensure that the 2 lines below function.
Basically, I created a usercontrol and dropped the grid onto the control.
But when I tried to drop the user control onto a form - it threw a error box and wouldn't allow the control to be dropped on the form.
Using trial and error I found that by REMing out 1 or both of the 2 lines below the Usercontrol could be dropped onto the form again.
.MasterTemplate.EnableFiltering = True
.MasterTemplate.DataView.BypassFilter = False
Here is the full routine that I use to clean up the GridView in most instances.
Friend Sub GridInitializeGridProperties(ByVal oRadGridView As Telerik.WinControls.UI.RadGridView, ByVal Optional EnableFiltering As Boolean = True, ByVal Optional EnableExcelFiltering As Boolean = True) Try With oRadGridView .AutoSizeRows = True .TableElement.SearchHighlightColor = Color.Orange .Dock = DockStyle.Fill .ReadOnly = True .AllowAddNewRow = False .AllowDeleteRow = False .AllowEditRow = False .AutoScroll = True .EnableFastScrolling = True .SelectionMode = GridViewSelectionMode.FullRowSelect .AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill .ShowNoDataText = False .EnableAnalytics = False .MasterTemplate.BestFitColumns() .EnableAlternatingRowColor = True .EnableGrouping = False .AllowDragToGroup = False If EnableFiltering Then .EnableFiltering = True .ShowFilteringRow = True .MasterTemplate.EnableFiltering = True .MasterTemplate.DataView.BypassFilter = False End If If EnableExcelFiltering Then .ShowHeaderCellButtons = True End If End With Catch ex As Exception End Try End Sub
I'm not concerned about it just now because I reverted back to the previous release - but something more than just the dropdown combos seems to be amiss.
