Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
The javascript merely redirects to the run process menu, once you click it, it will open the run process menu form. Submit the form and process will start.
Hi Experts I´m testing this recomendation Run Process from CRUD Add Button
and note that It don´t work, when I do a click of button the form is oppened but the process does not run after submit the form, only create a Record.
Anybody can tell me if I need do something more in order to achieve it?
There are the configuration that I have
Run Process configuration
Crud configuration to activate New Record Button *Required to enable the Button in the Crud
Add Button Label
Script to redirect to run proces instead to Add Record.
Important note: Also I did the test with this code bellow and it does not work either.
$(
"button[value='CRUD_New']"
).click( function(event){
event.preventDefault();
window.location.href =
"nueva_rc_submit"
;
//replace the value with the custom ID of Run Process
});