Can I set all users Dashboard layout to LIST?
Answered
In relation to this topic : Configure Default Entry Page for all users
Adding one more question to this.
Is there any DB query that I can use to update default layout to LIST instead of tumbnails ?
Thank you,
CT
Hi Chakra,
I'm assuming that you mean the Browse layout rather than the Dashboard layout, but if I'm wrong please let me know.
You can update the default Browse page layout to be LIST for all users by running the following query and restarting Yellowfin:
and of course, if you want to be specific about which users then add the IpPerson value (from the Person table)UPDATE PersonConfiguration SET ConfigData = 'LIST' WHERE IpPerson = <insert IpPerson here> AND ConfigTypeCode = 'USERCONFIG' AND ConfigCode = 'REPORTLISTVIEW'
regards,David
Hi Chakra,
I'm assuming that you mean the Browse layout rather than the Dashboard layout, but if I'm wrong please let me know.
You can update the default Browse page layout to be LIST for all users by running the following query and restarting Yellowfin:
and of course, if you want to be specific about which users then add the IpPerson value (from the Person table)UPDATE PersonConfiguration SET ConfigData = 'LIST' WHERE IpPerson = <insert IpPerson here> AND ConfigTypeCode = 'USERCONFIG' AND ConfigCode = 'REPORTLISTVIEW'
regards,David
Replies have been locked on this page!