Skip to main content

Show Posts

This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.

Messages - jp26198926

1
General Discussion / news for next update?
Dear Guys,

I wanna know if there is a news of when are they going to release a new version? or an update for a current bugfix?

Thank you,
4
General Discussion / Re: Add session id_user to a table ?
Hello everyone!!! How can I add the id of the user that is logged in to a table? It would be interesting and useful to add it as a defaultvalue in the row properties. Cheers!!!

Hi ddiaz2380,

If you already setup your authentication then you can set this  in the field properties, please see below screenshot.
https://drive.google.com/file/d/1VkE4DfjpSq9Tj2WTe9WiXmfo3KJ-2K5W/view?usp=sharing
8
Questions / Re: Cannot join 1 table more than once
@jp26198926‍ you cannot do that, you have to use one field to link a table to the current table. In summary, you only join a table to the current table once.
Hi @Willvin, ahh okay noted for the limitation, hopefully it can be added this feature on the next version release :D so that we can display the names of who created and who's the updating the data record :)

Thank you,
10
Questions / Cannot join 1 table more than once
Hi Guys,

Example: I have MAIN table w/ created_id and updated_id fields that reference to USER table id field. How to do this in phprad gui?
I want this query below to be accomplish in phprad but it seems i can only join table once in GUI.

SELECT c.username AS created_by, u.username AS updated_by
FROM MAIN m
LEFT JOIN user c ON m.created_id = c.id
LEFT JOIN user u ON m.updated_id = u.id
11
Questions / put close button in modal
Dear Guys,

I just wanna know how can i put a close button on a modal in phprad vue, I tried all the themes but no luck.

Thanks,