Hello!
I can't delete the other post that I was talking about this issue, there, my theory was about server side condition, and the problem I have is another one, so in order to not create confusion I'll like to start again:
NodeJS
Wappler 7 Beta 16:
I have this SC with both custom query:
And in another SC: insert action:
The server connect
has a session storage cache
<dmx-serverconnect id="serverconnect5_secciones" url="/api/proyectos/secciones" dmx-param:proyecto="1" dmx-param:my_incompleted_task="" dmx-param:incomplete="" cache="session1" ttl="3600"></dmx-serverconnect>
Whenever I call the server connect
with a button in order to reload
it, it does it without issues
<a class="dropdown-item" href="#" dmx-on:click="serverconnect5_secciones.load({},true)">Forzar recarga</a>
Now, I have this form:
<form id="form2" method="post" is="dmx-serverconnect-form" action="/api/proyectos/crear_tarea" dmx-on:success="serverconnect5_secciones.load({},true)">
And this is breaking all the page..
BUT
If I remove dmx-on:success="serverconnect5_secciones.load({},true)"
Then there's no issues on the page..
One observation I can make here is:
On the first case, (with the on:success
) the form doesn't bring the data:
Without the on:success
:
I tried to record a performance on chrome but it fails, can't finish the task..
Thanks in advance..
PS: No errors on console..