
You're absolutely right — subgrids in Power Pages forms are not as responsive as the newer Entity List component, especially on mobile devices. This is a known limitation, and unfortunately, there isn't a built-in setting to make subgrids fully responsive out of the box.
If possible, replace the subgrid with an Entity List configured to show related records. You can:
You can try injecting custom CSS to improve responsiveness. For example:
/* Make subgrid table responsive */
table.entity-grid {
width: 100%;
overflow-x: auto;
display: block;
}
table.entity-grid td {
word-wrap: break-word;
white-space: normal;
}
Add this CSS to your site's Web Page > Custom CSS or via a Web Template included in the page.
If you're comfortable with Liquid, you can:
If subgrids are essential to your use case, consider submitting feedback via the Power Pages Ideas portal — Microsoft is actively improving mobile support.