hi
Suppouse if we use rowspan and merged the cells and to get the selected cells using following code
var area=mygrid._selectionArea;
var leftTopCol=area.LeftTopCol;
var leftTopRow=area.LeftTopRow;
var rightBottomCol=area.RightBottomCol;
var rightBottomRow=area.RightBottomRow;
e.g we will get 2 , 2 , 5 , 6 as per above sequence.
my problem is when we reselect the rowspan area and we use above code to get selected area i will get 2,2,2,2
so is there any way to find rowids and cellids of grid after use of rowspan and colspan in row selection mode.
thank you
shriniket