Hi Guys.
I have created a new Section, but after saving a new record, the List is displayed instead of the new record. What could I have done wrong?
Like
Dear Gary,
This behavior of the system is normal and out-of-the-box so when creating a new record - the list of all records in the section will be opened instead of this record.
Unfortunately as for now there is no out-of-the-box tool that can regulate this behavior in the system, but we will create an idea for our R&D team so they could implement this new functionality in one of future versions of the application. Thank you for helping us to make our application better!
Best regards,
Oscar
Hi Oscar. I am busy with my Certificate homework, and part of the question is that when a new record is created, firstly I run a process, the process adds a few details records, and then the details need to be refreshed. So surely there is a way of staying on the record. Can I not accomplish this in Javascript?
Gary,
You can refresh the entire page using this:
this.reloadEntity();
or refresh just a single detail using this:
this.updateDetail({detail: "DetailNameHere"});
Ryan