
First the problem I am trying to solve: gridview's SearchRow by default uses "Contains" for GridViewTextBoxColumns. I need to change this to "Starts With"
I searched the KB and found this article: https://docs.telerik.com/devtools/winforms/knowledge-base/starts-with-search-in-radgridview and its ALMOST perfect!
It was VERY easy to implement and it works...sort of :(
Ok so it works "sort of" and you get only the rows that "Start With" that match whatever you typed into the Search Row (I have AutomaticallySelectFirstResult = True.)
Now click the "next" or "previous" button on the search row...nothing happens or rather it happens in the blink of an eye: The first row that matches is selected from the search. Click Next and it deselects that first row...and then reselects it. If you click the "Previous" button it will in fact jump to the very last match. Click it again and it clears the selection, and re-selects the same row. It does not crawl through the collection of found results :(
The expected behavior would be the grid selects the next row when you click the "Next" button. Click this again and again the grid should select the next row that matches and so on. Same for the "Previous" button only in reverse. Finding a solution to this is my immediate problem.
More on the "Sort of" working new custom search - what the article describes is creating a class called "CustomSearchRow" and there's an overridden method contained within called "MatchesSearchCriteria" and this returns a Boolean that if the cell "StartsWith" returns True and False otherwise...here's why I say it "Sort of" works: If you have a cell with "All Good People" and you search for "P" it WILL find this...that cell does NOT start with "P", it starts with "A" and should NOT be found. If anyone knows a way around this your help would terrific!
-Curtis


We need the ability to use the underline field for each column instead of the column display name as the field in the export file. Our column display names are built dynamically and it is possible that we can have two columns display names being the same. Their underline properties will be the different, therefore, we want to use that in the export.
Any help would be great.
Thanks


Its possible add a filter of checks selected or not, and change item color according to index selected?
I use class radmultiColumnCombobox.

Hi,
I am wanting to drop and item onto a RadGridView without having to select the destination grid row first.
Is there a way to detect which row the mouse is hovering over before the drop event occurs?
I find that none of the DragDrop events are firing when the mouse button is released over the destination gridview.
MouseMove does fire, and I was trying to find the RowElement via X and Y Points. Is there a way to do this?
Many Thanks,
Martin.

I've created a custom binding navigator that inherits from the default to be able to optionally cancel the button navigation. When I add the custom navigator to the form, I don't get the default images. Instead they all use a default image like the attached image. How can I create a custom navigator with the standard button images?
This issue happens even if there is no custom code like the example below:
Public Class CancelBindingNavigator Inherits RadBindingNavigator Protected Overrides Function CreateNavigatorElement() As RadBindingNavigatorElement Return New RadBindingNavigatorElement() End FunctionEnd Class
Hello
I have a gridview (with multiple select) in which a column contains updatable values.
When I select a row and update the value the row is selected bu the other rows are unselected
I woold like to keep in the selectedrows collections all the rows in which I have updated the value to be able to process all the selected rows simultaneously
Is there a way to achieve this ?
Thanks in advance
Pierre-Jean

Hello
I have a gridview in which I have added a GridViewCheckBoxColumn
I have not found which event is fired when I click on the check box and how to get the value of the checkbos (checked or not) without leaving the cell.
In other word how can I catch the click on the check bos and test its value.
the CellValueChanged event is fired only when I leave the cell ...
the CellClick Event allows me to get the cell but not the checkbox value ..
Any idea ?
Thanks in advance