Hi,
I am using Grid. Here is my html code:-
<ejs-grid #RoleGrid id='RoleGrid' [dataSource]='RoleData' rowHeight='38'
height='300' gridLines="Both" (rowSelected)='roleRowSelected($event)' (rowDeselected)='roleRowDeSelected($event)'
[selectionSettings]='selectionOptions' (dataBound)='dataBound($event)'>
At the databound event, I am using following code:-
this.RoleGrid.selectRows(this.SelectedRowIndexs);
after that sequence of event calling is:-
rowselected
databound(unwanted call)
rowselected(unwanted call)
rowdeselected(unwanted call)
Please do needful because rowdeselected event is unselecting the last selected row.
Namita