-
|
I have 2 types of records A and B. In A, I have a Datagrid containing 10 items per-page and let's say, I can reach to page 4. Here is a reference Here is the image for reference. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
You're absolutely right—Contember's To resolve this, you have two options:
|
Beta Was this translation helpful? Give feedback.

You're absolutely right—Contember's
DataGridremembers its state (including filters and pagination) based on a key derived from the entity name and page name. This means that if you have multipleDataGridcomponents working with the same entity on a same page, they will share the same state by default, including pagination.To resolve this, you have two options:
Specify a unique
dataViewKeyIf you want each grid to maintain its own independent state, you can set a custom key to differentiate them:
Replace
customKeywith a unique identifier to ensure each grid has its own stored state.Disable state persistence for pagin…