Columns and number of results are stored for all tables at once #618
Unanswered
elephantux
asked this question in
Q&A
Replies: 3 comments 4 replies
-
You need to make two different tables to have different options. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@rappasoft did you mean DB tables or Table Classes (I already use it)? |
Beta Was this translation helpful? Give feedback.
1 reply
-
I have two different classes for these tables. But let's say the email field, if disabled in one table on one page, is also disabled in the other table. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Let's say I have a table with users and a table with admins that are on different pages of the site. The table in the database is the same, different conditions in the query (
where->('is_admin', true)
).If I uncheck (
public bool $columnSelect = true;
) the name in one table, it will also be unchecked in the other table.The same goes for the number of results on the page. I select 50 in one table, it will be the same in the other (other page).
How to solve this?
Beta Was this translation helpful? Give feedback.
All reactions