Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
formatting
Source Link
sth
  • 231.2k
  • 56
  • 288
  • 370

Here's the piece I forgot to add to my code that tripped me up...

<context-param> <param-name>facelets.LIBRARIES</param-name> <param-value>/WEB-INF/faces/foo.taglib.xml</param-value> </context-param>

<context-param> <param-name>facelets.LIBRARIES</param-name> <param-value>/WEB-INF/faces/foo.taglib.xml</param-value> </context-param> 

You'll also want to change check="([a-Z]^)" to regex="..."check="([a-Z]^)" to regex="..."

I like this approach because there's no need to extend ValidatorELTagValidatorELTag. I'm a very big fan of facelets and this is one more cool feature.

Here's the piece I forgot to add to my code that tripped me up...

<context-param> <param-name>facelets.LIBRARIES</param-name> <param-value>/WEB-INF/faces/foo.taglib.xml</param-value> </context-param>

You'll also want to change check="([a-Z]^)" to regex="..."

I like this approach because there's no need to extend ValidatorELTag. I'm a very big fan of facelets and this is one more cool feature.

Here's the piece I forgot to add to my code that tripped me up...

<context-param> <param-name>facelets.LIBRARIES</param-name> <param-value>/WEB-INF/faces/foo.taglib.xml</param-value> </context-param> 

You'll also want to change check="([a-Z]^)" to regex="..."

I like this approach because there's no need to extend ValidatorELTag. I'm a very big fan of facelets and this is one more cool feature.

Source Link

Here's the piece I forgot to add to my code that tripped me up...

<context-param> <param-name>facelets.LIBRARIES</param-name> <param-value>/WEB-INF/faces/foo.taglib.xml</param-value> </context-param>

You'll also want to change check="([a-Z]^)" to regex="..."

I like this approach because there's no need to extend ValidatorELTag. I'm a very big fan of facelets and this is one more cool feature.