When I type text in the search box, several non-matching rows are selected. The number that shows to the right in the search box, but the actual number of rows selected is wrong. I am using the following event code to get the selected rows. I am writing the number of rows selected to the console. I have attached a screenshot of the issues.
private void TableSearchRow_SearchProgressChanged(object sender, SearchProgressChangedEventArgs e)
{
GridViewSearchRowInfo searchRow = sender as GridViewSearchRowInfo;
if (e.SearchFinished && searchRow.CurrentSearchResultsCount > 0)
{
foreach (GridSearchResultCellInfo cellInfo in e.Cells)
{
cellInfo.RowInfo.IsSelected = true;
}
}
Console.WriteLine(dgvFiles.SelectedRows.Count().ToString());
}

Hi Guys
I need to pass a list of addresss which i want to display on a bing map similar to
currently I use the following for a single address string
Dim request As Telerik.WinControls.UI.Map.Bing.SearchRequest = New SearchRequest()
request.Query = addresses(0)
request.SearchOptions.Count = 10
request.SearchOptions.QueryParse = True
what approach i should use for multiple address??
Ideally I would like to use a data table which lists an address in each row of the datatable along with some additional data for displaying on a callout (no geo coordinates) and then add a pin for each address onto the map
Many Thanks
Andre

Hello,
I am trying to figure out how to make the Suggested Actions not scroll off of the screen in Windows forms.
Can you help show how I can get these to be posted vertical?
Thanks -Tim

Hi, I need to retrieve the text contents of AutoCompleteBox in Javascript (client side).
I tried this but it just alerts me nothing (blank result):
<script>
function CheckOE() {
alert(document.getElementById('RadAutoCompleteBox1').value);
}
</script>
<telerik:RadAutoCompleteBox RenderMode="Lightweight" runat="server" ID="RadAutoCompleteBox1" ClientID="RadAutoCompleteBox1"
autopostback="true"
DataSourceID="blah" DataTextField="blah" DataValueField="blah" InputType="blah" Width="100%"
AllowCustomEntry = "false"
DropDownWidth="150px"
onfocusout="CheckOE()"
>
Any idea?
Thanks!


I want to distinguish between:
A) Tab close.
B) Tab being dragged out into a new parent window
Both of the above call: TabRemoving, TabRemoved
What is the proper event or technique to distinguish between A and B?
I am using your drag and drop service between grids. Code is working fine for 10 rows. Lager multirow selections error out. I have experimented and have determined that if the rows are not showing in the grid I get this error. For example, if my grid visually shows 10 rows and I select all of those rows and drag them to another grid all works fine.
If I select the first row and scroll down to select the 11th row while holding down the shift key, all eleven rows are selected. However dragging then to the other grid I get an error in the svc_PreviewDragDrop method on the line: var dragGrid = rowElement.ElementTree.Control as RadGridView;
Error Message below:
Date Time:1/9/2021 6:45:16 PM
Exception Name:Object reference not set to an instance of an object.
Event Name:System.NullReferenceException: Object reference not set to an instance of an object.
at SmartView_V2.frmMainForm.svc_PreviewDragDrop(Object sender, RadDropEventArgs e) in C:\Users\claud\Documents\Visual Studio 2019\Projects\SmartView V2\frmMainForm.cs:line 2387
Control Name:svc_PreviewDragDrop
Form Name:frmMainForm

Hi, I have a loop where I am filling the grid and immediatelly print the grid. All printed documents have the same grid values of the last loaded records to the grid DataSource. Is there something I can do to properly print the grid with correct cell values from actual records?
foreach (var run in _runsToPrint){ FillReportedAnalytesGrid(); PrintPreview.PrintGrid(rgvReportedAnalytes, run);} private void FillReportedAnalytesGrid(){ var records = provider.GetReportedResults(); rgvReportedAnalytes.DataSource = null; rgvReportedAnalytes.DataSource = records; rgvReportedAnalytes.BestFitColumns(BestFitColumnMode.AllCells); rgvReportedAnalytes.Refresh();}
public static void PrintGrid(RadGridView view, string run){ var document = new RadPrintDocument(); view.Print(false, document);}
Are there any options to make a tooltip in which you can place Text, Buttons, etc.?
Something like this:
