Bauke Scholtz

Results 96 comments of Bauke Scholtz

^^ While prepping the reproducer I discovered that having a `@Source` is indeed the cause of observable issue. See the README at https://github.com/BalusC/smallrye-graphql-issue-360

That worked. Thank you very much :)

Closing off as norepro.

> The question is: why doesn't the UIInput class have the setDisabled method? Most likely because it's a superclass and `disabled` is a HTML attribute so it has to be...

> I'll use it on my jsf utils! You could open a PR to add to OmniFaces 4.x to create a win-win situation ;)

And it should support variants as well such as `pt-BR-PB`.

PR: https://github.com/eclipse-ee4j/mojarra/pull/5344 Faces context params have now been mapped to [`@FacesConfig` attributes](https://github.com/eclipse-ee4j/mojarra/blob/7f7ada58e1ecee55245a85e08420c77c297e9a4e/impl/src/main/java/jakarta/faces/annotation/FacesConfig.java). We can now use ``` @FacesConfig( projectStage = Development, automaticExtensionlessMapping = true, interpretEmptyStringSubmittedValuesAsNull = true ) public class...

OmniFaces `` and `` tags also basically convert all attributes of existing validators/converters to deferred value expressions. - https://showcase.omnifaces.org/taghandlers/validator - https://showcase.omnifaces.org/taghandlers/converter

`jakarta.faces.context.ExceptionHandler` API doesn't support non-Faces requests in first place. There the `FacesExceptionFilter` is for. And with `FacesExceptionFilter` in place there's no reason to repeat same logic in `FullAjaxExceptionHandler`. Whilst the...

> *based on the location of the jsf view file* Hmm. Fair. But then you still need to deal with non-Faces requests. There's no way that you can use a...