Refer to https://developers.arcgis.com/javascript/latest/sample-code/widgets-featuretable-map/, I loaded ESRI's FeatureTable widge into my App. What is the way to check on/off all of the rows dynamically thruough JavaScript code? Thanks if you can provide your hint.
You can select the rows using the object ids of the source layer.
// select all rows
const oids = await featureTable.layer.queryObjectIds();
featureTable.selectRows(oids);
Rene: Thanks for your response. What's the code to add/remove All of the row? Could you help?