Hi everyone,
I'm having an issue with a grid in my interface. When using System Administrator account, the data loads correctly when the next page button is clicked.
But when using a Basic User account, the grid shows the same first-page data, and the paging control is not updating as well.
I checked all related objects used in the code, all have Viewer access for the Basic User's group.
Code snippet:
a!gridField_23r3(
data: local!grid.data,
pageSize: 5,
pagingSaveInto: fv!pagingInfo,
validations: {}
)
Thanks in advance for any insights!
Discussion posts and replies are publicly visible
Checking in to agree with Harsha - nothing in terms of account-type security would generally allow a given user to load the first page of a grid but then fail to be able to see the second page. I'm guessing that if you fix the issue Stefan pointed out - the "pagingSaveInto" currently being something nonsensical - that might smoothe over internal issues in such a way that the error goes away (i suppose there's a chance that the error it gives basic users is somehow not as strong when seen by an admin, though if so I can't imagine why or how).