Access table data without logging in

Sagar Patro
Kilo Guru

ctomasi tagging you since one of my fav

Here it is,

Initially, I created a UI page(public) but it was static. Later, we wanted to make it intelligent and decided to keep all our data in tables.

Now, we are able to access the UI page without login. The static content loads absolutely fine but the data needed   from the table is blank. I believe this is because of access controls. The question is, whether there is a way to read table data without login.

Thank you very much,

1 ACCEPTED SOLUTION
4 REPLIES 4

john_roberts
Mega Guru

Try adding read ACLs on for the table row (table.none) and columns (table.*), add the "public" role. I know it used to work but haven't tried in a while. I'm assuming you already created the "sys_public" record to expose the page if you're getting the static data.


Thanks, Adding a simple function to the Script include makes it accessible in available as public.



isPublic:function(){


        return true;


}


Chuck Tomasi
Tera Patron

Sorry I was unable to respond to your original query. I was OOO for a few days and unable to respond. It looks like the other community experts have you taken care of.