Package com.icesoft.faces.component.ext

Examples of com.icesoft.faces.component.ext.HtmlDataTable


 
  public void cambiaParametriIva(ValueChangeEvent e) {
    String nuovoCodiceIva = (String) e.getNewValue();
    if (nuovoCodiceIva!=null && !"".equals(nuovoCodiceIva)) {
      HtmlDataTable dt = (HtmlDataTable) e.getComponent().getParent().getParent();
      RowMovimentoIva rowMovimentoIva = (RowMovimentoIva) dt.getRowData();
      super.selezionaRiga(rowMovimentoIva);
      cambiaParametriIva(nuovoCodiceIva);
      BackingBeanUtility.refreshCurrentPage();
    }
  }
View Full Code Here


  }
 
  public void cambiaImporto(ValueChangeEvent e) {
    Double nuovoImporto = (Double) e.getNewValue();
    if (nuovoImporto!=null) {
      HtmlDataTable dt = (HtmlDataTable) e.getComponent().getParent().getParent();
      RowMovimentoIva rowMovimentoIva = (RowMovimentoIva) dt.getRowData();
      super.selezionaRiga(rowMovimentoIva);
      getSelectedRowMovimentoIva().getMovimentoIva().setImporto(nuovoImporto);
      calcolaImpostaEImponibile();
      BackingBeanUtility.refreshCurrentPage();
    }
View Full Code Here

      DettaglioMovimentoContabileBackingBean dettaglioMovimentoContabileBackingBean) {
    this.dettaglioMovimentoContabileBackingBean = dettaglioMovimentoContabileBackingBean;
  }
   
  public void eliminaRigaMovIva(ActionEvent ae) {
    HtmlDataTable dt = (HtmlDataTable) ae.getComponent().getParent().getParent();
    RowMovimentoIva rowMovimentoIva = (RowMovimentoIva) dt.getRowData();
    super.selezionaRiga(rowMovimentoIva);
    super.eliminaRiga(ae);
  }
View Full Code Here

    super.selezionaRiga(rowMovimentoIva);
    super.eliminaRiga(ae);
  }
 
  public void cercaIva(ActionEvent ae) {
    HtmlDataTable dt = (HtmlDataTable) ae.getComponent().getParent().getParent();
    RowMovimentoIva rowMovimentoIva = (RowMovimentoIva) dt.getRowData();
    super.selezionaRiga(rowMovimentoIva);
    ListaRigheIvaBackingBean listaRigheIvaBackingBean = (ListaRigheIvaBackingBean) BackingBeanUtility.trova("listaRigheIvaBackingBean");
    listaRigheIvaBackingBean.cercaIva(ae);
  }
View Full Code Here

    Object idAttr = ae.getComponent().getAttributes().get("tableId");
    if( idAttr == null ){
      log.warn("L'id della tabella da esportare e' null");
      throw new RuntimeException("No table to be exported!");
    }
    HtmlDataTable dataTable = null;
    UIComponent oTable = ae.getComponent().findComponent((String) idAttr);
    if( oTable != null )
      if (oTable instanceof HtmlDataTable)
        dataTable = (HtmlDataTable) oTable;
    if( dataTable == null ){
      log.warn("Nessuna tabella con id: "+idAttr);
      throw new RuntimeException("No table to export : " + idAttr);
    }
    dataTable.setValue(resultForExport);
   
    // esporto la dataTable
    excelExporter = (ExcelExporter) BackingBeanUtility.trova("excelExporter");
    excelExporter.exportTable(ae);
View Full Code Here

    Object idAttr = ae.getComponent().getAttributes().get("tableId");
    if (idAttr == null) {
      log.warn("L'id della tabella da esportare e' null");
      throw new RuntimeException("No table to be exported!");
    }
    HtmlDataTable dataTable = null;
    UIComponent oTable = ae.getComponent().findComponent((String) idAttr);
    if (oTable != null) {
      if (oTable instanceof HtmlDataTable) {
        dataTable = (HtmlDataTable) oTable;
      }
    }
    if (dataTable == null) {
      log.warn("Nessuna tabella con id: " + idAttr);
      throw new RuntimeException("No table to export : " + idAttr);
    }
    dataTable.setValue(getListaTotaleMovimenti());
    // esporto la dataTable
    excelExporter = (ExcelExporter) BackingBeanUtility.trova("excelExporter");
    excelExporter.exportTable(ae);

    // resetto il pageSize della ricerca
View Full Code Here

TOP

Related Classes of com.icesoft.faces.component.ext.HtmlDataTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.