Uses of Class
quick.dbtable.Column

Uses of Column in quick.dbtable
 

Methods in quick.dbtable that return Column
 Column DBTable.getColumn(int colIndex)
          Returns the column object for the specified index.
 Column DBTable.getColumnAsCreated(int colIndex)
          Returns the column object for the specified index, as it was created.
 Column DBTable.addColumn(java.lang.String headerText)
          add a column to table.
 Column DBTable.getColumnByDatabaseName(java.lang.String colName)
          gets the Column based on the database column name If the column name is not found, this returns null
 Column DBTable.getColumnByHeaderName(java.lang.String colName)
          gets the Column based on the column header name If the column name is not found, this returns null
 

Methods in quick.dbtable with parameters of type Column
 void DBTable.addColumn(Column aColumn)
          Deprecated. Developers are making mistakes in using this method,so use the safe method addColumn(String). If this method is already working fine for you then you can continue to use them.
 void DBTable.removeColumn(Column aColumn)
           
 void DBTable.setCellComponent(Column c, int cellType, java.util.Hashtable cellValueToDisplayHash)
          sets the column's cell's component for rendering and editing.
 void DBTable.setCellComponent(Column c, int cellType, java.util.Hashtable cellValueToDisplayHash, boolean addClearOption)
          sets the column's cell's component for rendering and editing See the documentation of the other method for more information, setCellComponent(Column, int , Hashtable) The only difference than the other method is, you can add an empty cell to select null values
 void DBTable.setCellComponent(Column c, int cellType, java.util.Hashtable cellValueToDisplayHash, java.lang.Object[] keysSortOrder, boolean addClearOption)
          sets the column's cell's component for rendering and editing See the documentation of the other method for more information, setCellComponent(Column, int , Hashtable) The only difference than the other method is, you can sort the combo box listed items using keysSortOrder.