Hi I am trying to disable sync id in vaadin or set it to -1 how can i achieve this.
i have tried following things but it didn't worked.
@WebServlet(initParams = { @WebInitParam(name = "syncIdCheck", value = "false") }) // UI class
// this is in web.xml
<context-param>
<param-name>syncId</param-name>
<param-value>false</param-value>
</context-param>