Hello,
when a user expand a row, I need all the other rows to close.
is it possible?
thanks!
Hi Gianluca,You should implement your view using the accordians to achieve this functionality.And set the "MultipleItems" property according to your requirement. Thank You,Manideep
assign id=tableID to table element you want to use
Onclick event on the open icon that calls this JS:
let table = document.getElementById('tableID')
let iconClose = table.querySelector('div[id*=IconClose]')
if(iconClose){ iconClose.click() }