Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
String rowData[][] = {
{ "1", "1", "1", "1" }, { "2", "2", "2", "2" }, { "3", "3", "3", "3" }, { "4", "4", "4", "4" },
{ "", "", "", "" }, { "", "", "", "" }, { "", "", "", "" }, { "", "", "", "" },
{ "", "", "", "" }, { "", "", "", "" }, { "", "", "", "" }, { "", "", "", "" },
{ "", "", "", "" }, { "", "", "", "" }, { "", "", "", "" }, { "", "", "", "" },
{ "", "", "", "" },
};
String columnNames[] = {
"Kategorie", "Bezeichnung", "Bemerkung", "Status"
};
DefaultTableModel data = new DefaultTableModel()
{
public boolean isCellEditable(int row, int column)
{
return false;
}
};
resultTable = new JTable(rowData, columnNames);
resultTable.setModel(data);