Hi Basavaraj,
Thank you for contacting Syncfusion Suppport
We have analyzed your query. You can get the current cell is empty or not by checking if the current cell value of grid is empty or not like the below snippet,
CODE SNIPPET:
var row = grid.CurrentCell.RowIndex;
var col = grid.CurrentCell.ColumnIndex;
if (grid.Model[row,col].CellValue == string.Empty)
MessageBox.Show("empty");
|
To check the whole row is empty or not, we need to check the every cell value in the current row by using for loop. We have also prepared a sample based on your requirement. Please find the attached sample below.
Sample: http://www.syncfusion.com/downloads/support/forum/119243/ze/WpfApplication81520447709
Please let us know if you have any queries.
Thanks
Kanimozhi B