Uses of Class
LumiSoft.Data.DataRowView

Packages that use DataRowView
LumiSoft.Data   
LumiSoft.UI.Controls.Grid   
 

Uses of DataRowView in LumiSoft.Data
 

Methods in LumiSoft.Data that return DataRowView
 DataRowView DataView.AddNew()
          Adds a new row to the DataView.
 DataRowView DataView.get(int index)
          Gets a row of data from a specified table.
 

Methods in LumiSoft.Data that return types with arguments of type DataRowView
 java.util.Iterator<DataRowView> DataView.iterator()
          Gets iterator.
 

Uses of DataRowView in LumiSoft.UI.Controls.Grid
 

Methods in LumiSoft.UI.Controls.Grid that return DataRowView
 DataRowView WGridTableView.getActiveRow()
          Gets currently active row or null if no active row.
 DataRowView RowInfo.getRowSource()
          Gets row.
 DataRowView[] WGridTableView.getSelectedRows()
          Returns currently selected rows.
 

Methods in LumiSoft.UI.Controls.Grid with parameters of type DataRowView
 void WGridListener.OnActiveRowChanged(DataRowView dr)
          Invoked when active row changed.
 void WGridAdapter.OnActiveRowChanged(DataRowView dr)
           
 boolean WGridListener.OnAddRow(DataRowView dr)
          Invoked when grid needs to add new row.
 boolean WGridAdapter.OnAddRow(DataRowView dr)
           
 boolean WGridListener.OnDeleteRow(DataRowView dr)
          Invoked when grid needs to delete row.
 boolean WGridAdapter.OnDeleteRow(DataRowView dr)
           
 void WGridListener.OnRowDoubleClicked(DataRowView dr)
          Invoked when row double clicked.
 void WGridAdapter.OnRowDoubleClicked(DataRowView dr)
           
 boolean WGridListener.OnUpdateRow(DataRowView dr)
          Invoked when grid needs to update row.
 boolean WGridAdapter.OnUpdateRow(DataRowView dr)
           
 boolean WGridListener.OnValidateCellValue(WGridColumn column, DataRowView dr, java.lang.Object value)
          Invoked when grid needs to store cell value.
 boolean WGridAdapter.OnValidateCellValue(WGridColumn column, DataRowView dr, java.lang.Object value)