You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But there is no method to get details row content,
E.g. it could be like:
var detailsComponent = test(grid).getDetailsComponent(0)).first();
The above would return component rendered for details row linked to first row if it is open. If it is closed it would throw e.g. IllegalStateException.
Also it would be useful to have:
var detailsOpen = test(grid).isDetailsOpen(0);
The above would return true if the details row is open.
Doing click on Grid cell should open details as a side effect if grid.setDetailsVisibleOnClick(true) is used.
The text was updated successfully, but these errors were encountered:
There is a method to get cell component like below.
$(Button.class, test(grid).getCellComponent(0, 5)).first().click();
But there is no method to get details row content,
E.g. it could be like:
var detailsComponent = test(grid).getDetailsComponent(0)).first();
The above would return component rendered for details row linked to first row if it is open. If it is closed it would throw e.g. IllegalStateException.
Also it would be useful to have:
var detailsOpen = test(grid).isDetailsOpen(0);
The above would return true if the details row is open.
Doing click on Grid cell should open details as a side effect if
grid.setDetailsVisibleOnClick(true)
is used.The text was updated successfully, but these errors were encountered: