How to disable checkbox for row selection in ag-grid React js?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Tanu Anu
    New Member
    • Aug 2022
    • 1

    How to disable checkbox for row selection in ag-grid React js?

    Code:
    checkboxSelection : function(rowNode){
                         if(rownode.data && (!rowNode.data.canDelete) || rowNode.DeleteStatus === SmgDeleteStatus.Deleted || (rowNode.data.IsFavorite == "No"))){
    retuen true;
    }
    retuen false;
    }
    But this is completely removingthe checkbox, I want checkbox but it should be in a disabled way. please help me through this.
Working...