Is there anyway to do user access control with columns in one table?
For example, I have a table which have a column named customer type, I want that one user can read and/or edit the columns with type one, the other user can read and/or edit type two.
Thanks a lot.
2 Answers
This is no direct api. However you can put JS based checked based on SESSION_ID or php variable in JS code.
https://www.gridphp.com/demo/demos/editing/column-access.phps
For server side checks, you need on_insert, on_update, on_delete callback functions to limit it based on session data.
Yes, readonly is supported. Refer docs
Your Answer