Re: Success message stuck

2022-07-31 Thread Deepak Dixit
Hi Avijit, Please check the browser console, there might be some error related to closing the success message. If you are not able to click on close button it might be css z-index issue Thanks & Regards -- Deepak Dixit ofbiz.apache.org On Sun, Jul 31, 2022 at 9:05 AM Avijit Bose wrote: > No

Re: Success message stuck

2022-07-30 Thread Avijit Bose
No Sir. I am not asking to modify the success message. What I am saying is ... the blue success message alert which appears and gets displayed on "return success" goes off all on its own after a few seconds by default. This is not vanishing on its own. It is staying displayed. Even if 'X' is click

Re: Success message stuck

2022-07-30 Thread Nicolas Malin
This is normal process when you use entity-auto. If you want a dedicate message or no message, override you service by an other BookServices.groovy: def createBookForUser() { run service: 'createBook', with: parameters return success("My message") //or // return success() } Nic

Success message stuck

2022-07-29 Thread Avijit Bose
Hello, 1. After completion of a db row creation, the blue success message (alert) is showing but gets stuck. It does not 'goes off' of its own. Clicking the close (X) button does not work. I am using a simple create service method to create a single row in db. * Create New Book