0

I need add custom attributes to a commandButton this attributes are required to work a bootstrap modal, I using h:commandButton

data-toggle="modal" 
data-target=".bs-example-modal-lg" 

<button type="button" class="btn btn-success" data-toggle="modal" data-target=".bs-example-modal-lg" >
    <span class="glyphicon glyphicon-plus"></span> 
</button>    
Jericob
  • 1,947
  • 2
  • 14
  • 16

1 Answers1

0

There are several solutions to bypass the fact that JSF components do not render custom HTML attributes.

See here : Custom HTML tag attributes are not rendered by JSF

Community
  • 1
  • 1
Thrax
  • 1,926
  • 1
  • 17
  • 32