Olli Tietäväinen

Results 12 comments of Olli Tietäväinen

@divyadeepa266 Please add the specific browser version(s) that are affected, as well as the exact Vaadin versions used.

Maybe I'm pointing out the obvious, but disabling weekdays like Saturdays or Sundays is only covering one use case; you might also want to disable dates like the 4th of...

You might also want to disable a range between June 1st to August 1st because that's when your summer holiday is.

Use case: adding a "register" button for users who don't have an account yet

Potential cause: ``` protected static FrontendVersion getVersion(String tool, List versionCommand) throws UnknownVersionException { try { Process process = FrontendUtils.createProcessBuilder(versionCommand) .start(); int exitCode = process.waitFor(); if (exitCode != 0) { throw...

Just adding a comment to use the words "uneditable", "gridpro" and "readonly" so this issue might show up in more searches 😃

Related issue: https://github.com/vaadin/flow/issues/14562

Workaround for Java, assuming there's an internal `` element in light dom: ```java TextArea textArea = ... textArea.getElement().executeJs("$0.getElementsByTagName('textarea')[0].setAttribute('rows','1');$0.getElementsByTagName('textarea')[0].style.minHeight = 0;", textArea.getElement()); ```

Updating to a more recent version of `vaadin-testbench-api` should do it: ``` com.vaadin vaadin-testbench-api 8.8.3 test ```

Vaadin 8 documentation should almost do as is