2 Replies Latest reply on Aug 25, 2008 9:08 AM by bobc75

    rich:inplaceInput not working on modal panel in IE

      We have a Seam application. In one area, we are using a rich:inplaceInput on a rich:modalPanel. This works fine in Firefox, but not in IE. In IE, although the Save and Cancel buttons appear, the text cannot be edited. Here is the markup for the rich:inplaceInput:

      <rich:inplaceInput styleClass="title" showControls="true" value="#{contact.order}"
      controlsHorizontalPosition="left" controlsVerticalPosition="bottom"
      viewClass="title"
      id="orderInput">
      <f:facet name="controls">
      <button onclick="#{rich:component('orderInput')}.save();"
      type="button">Save
      <button onclick="#{rich:component('orderInput')}.cancel();"
      type="button">Cancel
      </f:facet>
      <a4j:support event="onviewactivated" action="#{department.updateInfo(contact)}" rerender="contactsTable"/>
      </rich:inplaceInput>