コード例 #1
0
 public GridRowCtx(Properties ctx, GridTab tab, int row) {
   super();
   this.ctx = ctx;
   this.gridTab = tab;
   this.gridTable = tab.getTableModel();
   this._windowNo = tab.getWindowNo();
   this.row = row;
 }
コード例 #2
0
  public ProcessDialogBuilder setFromGridTab(GridTab gridTab) {
    final int windowNo = gridTab.getWindowNo();
    final int tabNo = gridTab.getTabNo();

    setWindowAndTabNo(windowNo, tabNo);
    setIsSOTrx(Env.isSOTrx(gridTab.getCtx(), windowNo));
    setTableAndRecord(gridTab.getAD_Table_ID(), gridTab.getRecord_ID());
    setWhereClause(gridTab.getTableModel().getSelectWhereClauseFinal());
    skipResultsPanel();

    return this;
  }