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 - Euder

2
Questions / Re: Filter lost after edit record
My solution:

1) Create a cookie on Actions After List: set_cookie('list_query',$_SERVER['QUERY_STRING'],1);
2) Load the cookie on Action After Edit: $list_query=get_cookie('list_query');
3) Redirect to After Edit: <list page name>/?$list_query

I hope this could help somebody!
3
Questions / Filter lost after edit record
Hi guys!!

How can i keep previous list filter after edit? Also, alfter alterring number of showing records the filter is lost.

Thanks in advande for any help.

Happy new year for everyone.
6
Questions / Error uploading file: Server responded with 501 code.
Hello everyone.

Everything was working fine with my app when suddenly one field with the property of File stopped working. After selecting a file, one message "Error uploading file: Server responded with 501 code" appears.

Any idea of what is wrong?

Thanks!
8
Questions / Re: Dynamic Select Lookup not working while editing record
Hi @willvin !

To better explain I will use an example: Suppose I have three tables: Buildings, Appartments, and Maintenance Activities. For every Activities record, we must first choose a Building from a select list, and after this choose an Appartment from a select list that depends on the selected Building. It works perfectly when adding a new record at Maintenance Activities but when editing a record and changing the Building option the Appartments´s list does not update the options. It keeps the same options related to the previous chosen Building. The behavior that I am trying to achieve is at least when changing the Building Options it erases the Appartment and presents a new Appartment list related to the new Building.

Thanks!