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
1415
Igx Hierarchical grid select All Rows in child grid
posted

Hi Team,

I am using Ignite v9.1.28 Hierarchical grid.

Requirement: On click of start button, we expand the child grid with all rows being selected by default and we  need the list of all selected bogies to pass to API. And disable deselect ALL feature from UI.

TS:

 async startClick (event) {
  this.grid1.isLoading = true;
  this.grid1.expandRow(event.Id);
  this.fillWorklistList(this.childList);
}

but my selectedList is empty as on click of Start button, it takes few seconds to fetch the childList from API and display in the grid (Load on Demand).

How can i get the list of child Data and disable deselect All option from UI. Please help.