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
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.
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.
While editing a record, one Select field with Dynamic Select Lookup option is not been updated (dropdown list) when its parent field is updated. Is there any way to fix it?
I have one view page (example: invoice) with a list view component (ex. invoice items). When I delete an item it redirects to Items List page. I would like to return to Invoice View page. Any ideas?