This topic is locked

Desktop and Mobile list view

11/13/2015 1:21:08 PM
PHPRunner General questions
F
fmelendez@design2147.com author

IM trying to have 2 different views on Desktop list and mobile list

they can view all the entries in desktop view and only edit their entry and in mobile they could only view and edit their entries. Also using Active Directory but if i have to use other authentication im open tot that

Sergey Kornilov admin 11/13/2015

In general - yes, this possible. This will require some coding though.
You can use isMobile() function to determine if you are currently in Mobile mode. This article explains how to add a custom WHERE clause to your SQL query:

http://xlinesoft.com/phprunner/docs/modify_sql_query_on_the_fly.htm
You will only need to add this where clause if you are currently in Mobile mode. It will be easier to implement if you use regular database-based security, a bit more complicated in case of AD as you might need to read some additional variables from AD like OwnerID.