Thang Le

Results 18 comments of Thang Le

I have issue here, so I vote for Support web components (lit-element) . issue: [https://stackoverflow.com/questions/68374506/polymer-braintree-gateway-integration-javascript-reference-style-problem](url)

add **prepareThreshold=0** to URL string could be like: `url: jdbc:postgresql://url....?sslmode=require&prepareThreshold=0` ``` jpa: open-in-view: false properties: hibernate: cache: use_query_cache: false default_schema: schema_name ```

this mean that until this fix has been done. we still need to config as below when connects to PgBouncer ? ``` jpa: open-in-view: false properties: hibernate: cache: use_query_cache: false...

> > Name must contain at least three characters > > name empty == less than three characters --> field invalid. > > So where is the problem? we expect...

As above photo. if the input text field is empty and I clicks outside of the input text field, then it will hightlight red and keep showing bubbles (empty dialog)....

This is my code: `binder.forField(textAssetName).asRequired().withValidator(new RegexpValidator("only from 3-30 numeric chars", "^[a-zA-Z0-9_\\-. ]{3,30}$"))` Seem issue is due to my regex incorrect.

i will close this issue. Thanks @knoobie

My code: ``` binder.forField(textAssetName).asRequired() .withValidator(new RegexpValidator("Please input between 3-30 characters"), "^[\\s\\w.-]{1,10}$")) .withValidationStatusHandler(handler -> showValidationError(handler, binder)) .bind(AssetDTO::getAssetName, AssetDTO::setAssetName); ``` When i input the data not match with regex condition, it shows...