丰富的数据表值选择问题



我正在尝试删除数据表值。 我的数据表显示了很多值。 当我单击以删除数据表中的特定行时,将打开确认对话框。 如果单击"确定",则调用 Bean 并将该值删除到数据库。 如果单击"取消",则不要调用 Bean.. 这是我的功能。

前任:我的数据表显示 10 行。当我选择 1 行删除按钮单击调用 Bean 时,它得到另一行值传递给 Bean...

我的用户界面代码..

 <h:commandButton   image="/images/remove.png"  onclick="#    {rich:component('confirmation')}.show();return false"/>
<a4j:jsFunction name="submit" action="#{bean.delete}">
  <f:setPropertyActionListener target="#{bean.name}" value="#{info.name}" />
 </a4j:jsFunction>

   <rich:popupPanel id="confirmation" width="250" height="150">
   <f:facet name="header">confirmation</f:facet>
   <h:panelGrid>
   <h:panelGrid columns="2">
   <h:graphicImage value="/images/remove.png" />
  <h:outputText value="Are you sure?" style="FONT-SIZE: large;" />
  </h:panelGrid>
  <br></br> 
  <h:panelGroup >
  <center><input type="button" value="OK"
  onclick="#{rich:component('confirmation')}.hide();submit();return false"     />
 <input type="button" value="Cancel"
  onclick="#{rich:component('confirmation')}.hide();return false" />   </center>
</h:panelGroup>
</h:panelGrid>
</rich:popupPanel>

我想这与"AJAX 调用不同步"有关

发布的代码缺少表信息,因此假设它与 AJAX 处理有关。

<rich:extendedDataTable
    id="myTable"
    value="#{myBean.rows}"
    selectionMode="single"
    rows="#{crudBean.actionForm.occurrences}"
    ...
    rowKeyVar="idx"
    ...>
    <a4j:ajax   event="selectionchange"
      listener="#{myBean.selectionListener}"/>
    <rich:column width="30px" styleClass="#{rowItem.className}">
      <util:myInputText id="status" managedBean="#{myBean}" rowItem="#{rowItem}" rowIndex="#{idx}"/>
    </rich:column>
      <util:myDeleteRecord id="delete" managedBean="#{myBean}" rowItem="#{rowItem}" rowIndex="#{idx}"/>
    </rich:column>
</rich:extendedDataTable>

在我的组件上,我使用:rowIndex="#{idx}"来确保我知道我正在编辑/删除哪一行

相关内容

  • 没有找到相关文章

最新更新