6 Replies Latest reply on Jul 9, 2014 7:40 AM by desertratx

    Richfaces 4.3.5 can't override controls of inplaceInput

    desertratx

      Hi,

       

      I've tried lots of things but i can't get my rich:inplaceInput component to take my custom controls. If showControls is set to true i always get the buttons with the

      checkmark and cancel image.

       

      I can sucessfully change the styles and position via css (.rf-ii-btn, .rf-ii-btn-pos) but as the button itself is from type image and has an richfaces image linked i can't

      alter it to set an own image.

       

      I've ended up with this minimal (not) working example.

       

      <rich:panel>

           <rich:inplaceInput showControls="true" id="inplaceInput">

                <f:facet name="controls">

                     <Button onmousedown="#{rich:component('inplaceInput')}.cancel();">

                          Save

                     </Button>

                     <Buttonon mousedown="#{rich:component('inplaceInput')}.save();">

                          Cancel

                     </Button>

                </f:facet>

           </rich:inplaceInput>

      </rich:panel>