Я хотел бы знать, как проверить, были ли удалены все строки интерактивной сетки.
Есть ли способ проверить это программно?
I got an answer to this,hope this helps for those who are in need. Fetch your grid info : var igrid = apex.region ("regionStaticID").widget().interactiveGrid("getViews", "grid"); {where regionStaticID is the interactive grid static id} if(igridL.model._numInsertedRecords === 0) { // do whatever you want here when there are no rows in the grid }