Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
30
On click on grid's cell need to select only clicked cell, not entire row
posted

On click on grid's cell the entire row of the grid (with clicked cell) is selected completely. 

But I need to select only the clicked cell, row must be stay unselected. How to achieve this?

Here is my grid

 <igx-grid igxPreventDocumentScroll #grid1 [data]="data" 
    [width]="'100%'" [height]="'100%'" 
    [autoGenerate]="false" 
    [displayDensity]="'cosy'"
    [rowSelection]="'single'"
    [columnHiding]="true"
    [primaryKey]="'id'"
    paste-handler (onDataProcessed)="dataPasted($event)"
    (onFilteringDone)="filteringDone($event)"
    (onSortingDone)="sortingDone($event)">
</igx-grid>
Parents Reply Children
No Data