BrightSide Workbench Full Report + Source Code
org.turro.crm.zul.sale.SaleActionGrid Class Reference
Inheritance diagram for org.turro.crm.zul.sale.SaleActionGrid:
Collaboration diagram for org.turro.crm.zul.sale.SaleActionGrid:

Public Member Functions

 SaleActionGrid ()
 
void setSaleProspect (SaleProspect saleProspect)
 
void setFrom (Date from)
 
void setTo (Date to)
 
void refresh ()
 
void afterCompose ()
 
- Public Member Functions inherited from org.turro.zkoss.grid.PagingGrid
void setColumns (int columns)
 
void setColumns (String hflexs)
 
void refine ()
 
boolean isDefaultBehavior ()
 
void setDefaultBehavior (boolean defaultBehavior)
 
String getRefineValue ()
 
void setRefineValue (String value)
 
int getMaxResults ()
 
void setMaxResults (int maxResults)
 
String getPagingMold ()
 
void setPagingMold (String pagingMold)
 
int getRowCount ()
 
void setRowCount (int rows)
 
void setHeadersVisible (boolean value)
 
boolean isHeadersVisible ()
 
String getVarColumns ()
 
void setVarColumns (String varColumns)
 
Collection< String > getVarColumnsList (String defaultCols)
 
void addDetailColumn ()
 
void addDetailColumn (HtmlBasedComponent caption)
 
void openDetails ()
 
boolean isEmpty ()
 
void clearColumns ()
 
void clearRows ()
 
void clearEmptyGroups ()
 
Columns getColumns (boolean create)
 
Rows getRows (boolean create)
 
Foot getFoot (boolean create)
 
Foot createFoot ()
 
void exportToPdf ()
 

Detailed Description

Author
llturro

Definition at line 16 of file SaleActionGrid.java.

Constructor & Destructor Documentation

◆ SaleActionGrid()

org.turro.crm.zul.sale.SaleActionGrid.SaleActionGrid ( )

Definition at line 21 of file SaleActionGrid.java.

21  {
22  }

Member Function Documentation

◆ afterCompose()

void org.turro.crm.zul.sale.SaleActionGrid.afterCompose ( )

Definition at line 72 of file SaleActionGrid.java.

72  {
73  refresh();
74  }
Here is the call graph for this function:

◆ refresh()

void org.turro.crm.zul.sale.SaleActionGrid.refresh ( )

Definition at line 36 of file SaleActionGrid.java.

36  {
37  if(saleProspect != null) {
38  addRows(saleProspect.getSaleActions());
39  } else {
40  getRows(true).getChildren().clear();
41  }
42  }
Rows getRows(boolean create)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ setFrom()

void org.turro.crm.zul.sale.SaleActionGrid.setFrom ( Date  from)

Definition at line 28 of file SaleActionGrid.java.

28  {
29  this.from = from;
30  }
Here is the caller graph for this function:

◆ setSaleProspect()

void org.turro.crm.zul.sale.SaleActionGrid.setSaleProspect ( SaleProspect  saleProspect)

Definition at line 24 of file SaleActionGrid.java.

24  {
25  this.saleProspect = saleProspect;
26  }
Here is the caller graph for this function:

◆ setTo()

void org.turro.crm.zul.sale.SaleActionGrid.setTo ( Date  to)

Definition at line 32 of file SaleActionGrid.java.

32  {
33  this.to = to;
34  }
Here is the caller graph for this function:

The documentation for this class was generated from the following file: