Articles in this section
Category / Section

How to get the record when double-clicked on the row in Silverlight ?

3 mins read

Get the record when double clicked on the row

In SfDataGrid, you can get the record based on row and column index from mouse pointer position. The record can be accessed by using any mouse events (example MouseDoubleClick event). This event is triggered when you double click on the row. Within this event, you can access the Visual Container by using the GetVisualContainer()  extension method that exists in the Syncfusion.UI.Xaml.Grid.Helpers. The ResolveToRecordIndex is resolved by using current RowIndex and you can get the record index. From record index, you can get the record from dataGrid.View.

C#

//namespace
using Syncfusion.Data;
using Syncfusion.UI.Xaml.Grid;
using Syncfusion.UI.Xaml.Grid.Helpers;
this.dataGrid.MouseDoubleClick += dataGrid_MouseDoubleClick;
private void dataGrid_MouseDoubleClick(object sender, MouseButtonEventArgs e)
{
   var visualcontainer = this.dataGrid.GetVisualContainer();
   // get the row and column index based on the pointer position 
   var rowColumnIndex = visualcontainer.PointToCellRowColumnIndex(e.GetPosition(visualcontainer));
   if (rowColumnIndex.IsEmpty)
     return;
   var colindex = this.dataGrid.ResolveToGridVisibleColumnIndex(rowColumnIndex.ColumnIndex);
   if (colindex < 0 || colindex >= this.dataGrid.Columns.Count)
     return;
   var recordindex = this.dataGrid.ResolveToRecordIndex(rowColumnIndex.RowIndex);
   if (recordindex < 0)
     return;
   var recordentry = this.dataGrid.View.GroupDescriptions.Count == 0 ? this.dataGrid.View.Records[recordindex] : this.dataGrid.View.TopLevelGroup.DisplayElements[recordindex];
   //Returns if caption summary or group summary row encountered.
   if (!recordentry.IsRecords)
     return;
   var record = (recordentry as RecordEntry).Data;
   var value = record.GetType().GetProperty(dataGrid.Columns[colindex].MappingName).GetValue(record) ?? string.Empty;
   MessageBox.Show("Cell Value : " + value);
}

Refer the following screenshot to get the record from mouse pointer position.

Show the record when double clicked on the row

Samples:

WPF

WRT

SilverLight

UWP

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments
Please sign in to leave a comment
Access denied
Access denied