Search:

Type: Posts; User: BinaryDigit09

Search: Search took 0.08 seconds.

  1. Re: Upadating Jtable while entering the data

    fireTableRowsInserted needs to know the start and end indices of the row(s) that were inserted.
  2. Re: Upadating Jtable while entering the data

    Looks like you almost have it.


    myModel.fireTableDataChanged();
    // fireTableRowsInserted(dataList.size() - 1, dataList.size() - 1);

    Should be this:


    fireTableRowsInserted(dataList.size()...
Results 1 to 2 of 2