Hi,
I am facing an issue where the customers intermittently get the "Validating" popup when trying to do some modification in grid and does not go away for more than 5mins
There is only one validation added in the SQL datasource.
<field name="name" type="text" length="100" required="true">
<validators>
<validator type="isUnique" criteriaFields="project_id">
<errorMessage>
<fmt:message key="nameMustBeUnique"/>
</errorMessage>
</validator>
</validators>
</field>
When this happens, there is no actual call that happens in the isc.showConsole(). When the call actually happens, then no popup appears.
There is one error that gets printed in the browser console. But this also happens only a few times.
I am facing an issue where the customers intermittently get the "Validating" popup when trying to do some modification in grid and does not go away for more than 5mins
There is only one validation added in the SQL datasource.
<field name="name" type="text" length="100" required="true">
<validators>
<validator type="isUnique" criteriaFields="project_id">
<errorMessage>
<fmt:message key="nameMustBeUnique"/>
</errorMessage>
</validator>
</validators>
</field>
When this happens, there is no actual call that happens in the isc.showConsole(). When the call actually happens, then no popup appears.
There is one error that gets printed in the browser console. But this also happens only a few times.
Comment