My department decided to update SmartGwt to version 5.0 and SmartClient to version 10.0. The update was successful, but a new problem arose - not a single page was opened in devMode due to the validateID method in the IDManager class, and specifically
because of the line -
In our project, the id is generated based on the url. I tried to solve this problem by using offline storage, but this added even more problems. Are there any other options to bypass this check without fixing hundreds of lines of code (in my case)?
because of the line -
Code:
assert id.matches("[a-zA-Z_$][0-9a-zA-Z_$]*") : "Invalid ID : " + id + ". Valid ID's must meet the following pattern [a-zA-Z_$][0-9a-zA-Z_$]*";
Comment