Hello,
I have a grid view where i have displayed my results. I have a double click event by which i try to find the clicked item. But the clickedItem returns null at times. The same code gives porper clicked items most of the times, but once in a while it returns null for the clicked item. Many of my colleauges are facing similar difficulty with Grid View.
I have a grid view where i have displayed my results. I have a double click event by which i try to find the clicked item. But the clickedItem returns null at times. The same code gives porper clicked items most of the times, but once in a while it returns null for the clicked item. Many of my colleauges are facing similar difficulty with Grid View.
private
void RadGridViewMouseDoubleClick(object sender, MouseButtonEventArgs e)
{
if (radGridView.CurrentItem == null) return;
//
// some code
//
}
here the ( radGridView.CurrentItem ) returns null at times, even though the current item details could be seen while debugging.